【UVALive-7734】解题报告(水题)

原始题目

题目大意

给出\(n\)种物品每种的个数和价值,求价值总和。

解题思路

求和

解题代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include<bits/stdc++.h>
#include<algorithm>
#define rep(i,a,n) for(int i=a;i<n;++i)
#define per(i,a,n) for(int i=n-a;i>=a;--i)
#define fi first
#define se second
#define cl(x,a) memset(x,a,sizeof(x))
#define all(x) x.begin(),x.end()
#define INF 0x3f3f3f3f
#define EPS 1e-9
#define mod 1000000007
using namespace std;
const int maxn=1e5+5;
const int maxm=1e5+5;

typedef long long ll;
typedef unsigned long long ull;
typedef vector<int> vi;
typedef pair<int,int> pii;



int t,n,m;


int main(){
ios::sync_with_stdio(false);

cin>>t;
while(t--){
cin>>n;
ll ans=0;
rep(i,0,n){
int a,b;
cin>>a>>b;
ans+=a*b;
}
cout<<ans<<endl;

}
}

收获与反思

暂无