Thứ Ba, 8 tháng 1, 2019

UVa 10300 - Ecological Premium (ignore the number of animal)

Link:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=15&page=show_problem&problem=1241
Sol:
#include <cstdio>
using namespace std;
int main() {
int TC, a, n, p, f;
scanf("%d", &TC);
while (TC--) {
int ans = 0;
scanf("%d", &f);
for (int i = 0; i < f; i++) {
scanf("%d %d %d", &a, &n, &p);
ans += a * p;
}
printf("%d\n", ans);
}
return 0;
}

Không có nhận xét nào:

Đăng nhận xét

Bài G - Educatioal Round 62

Đề bài: Bạn được cho 1 đồ thị vô hướng đặc biệt. Nó bao gồm $2n$ đỉnh được đánh số từ 1 đến 2n. Dưới đây là một số đặc tính của đồ thị: + ...