728x90
https://www.acmicpc.net/problem/9325
#include <iostream>
using namespace std;
int main() {
cin.tie(NULL);
ios_base::sync_with_stdio(false);
int testCase;
cin >> testCase;
for (int t = 0; t < testCase; t++) {
int total = 0;
int price;
cin >> price;
total += price;
int n;
cin >> n;
for (int i = 0; i < n; i++) {
int num, cost;
cin >> num >> cost;
total += (num * cost);
}
cout << total << '\n';
}
return 0;
}
728x90
'알고리즘 문제' 카테고리의 다른 글
[백준] 1074번 Z (0) | 2020.03.23 |
---|---|
[백준] 11066번 파일 합치기 (0) | 2020.03.20 |
[백준] 4539번 반올림 (0) | 2020.03.20 |
[백준] 1965번 상자넣기 (0) | 2020.03.17 |
[백준] 4597번 패리티 (0) | 2020.03.17 |