Relic Discovery(水题)

来源:互联网 发布:linux和unix哪个好 编辑:程序博客网 时间:2024/06/05 22:50

Problem Description
Recently, paleoanthropologists have found historical remains on an island in the Atlantic Ocean. The most inspiring thing is that they excavated in a magnificent cave and found that it was a huge tomb. Inside the construction,researchers identified a large number of skeletons, and funeral objects including stone axe, livestock bones and murals. Now, all items have been sorted, and they can be divided into N types. After they were checked attentively, you are told that there are Ai items of the i-th type. Further more, each item of the i-th type requires Bi million dollars for transportation, analysis, and preservation averagely. As your job, you need to calculate the total expenditure.

Input
The first line of input contains an integer T which is the number of test cases. For each test case, the first line contains an integer N which is the number of types. In the next N lines, the i-th line contains two numbers Ai and Bi as described above. All numbers are positive integers and less than 101.

Output
For each case, output one integer, the total expenditure in million dollars.

Sample Input
1
2
1 2
3 4

Sample Output
14

解析:这道题很水,就是有N个项目,每个项目的数量有A个,每个价值为B,求所有项目的总价值

代码如下:

#include <cstdio>int main(){    int t;    scanf("%d",&t);    while(t --)    {        int n;        scanf("%d",&n);        long long sum=0;        while(n --)        {            int a,b;            scanf("%d%d",&a,&b);            sum=sum+a*b;        }        printf("%lld\n",sum);    }    return 0;}
原创粉丝点击