728x90

https://www.acmicpc.net/problem/1267

#include <bits/stdc++.h>
using namespace std;
int phone[20], Y, M;
int main() {
ios::sync_with_stdio(false), cin.tie(nullptr);
int N = 0;
cin >> N;
for (int i = 0; i < N; i++) cin >> phone[i];
for (int i = 0; i < N; i++) {
Y += ((phone[i] / 30) + 1) * 10;
M += ((phone[i] / 60) + 1) * 15;
}
if (Y > M) {
cout << "M " << M;
} else if (Y < M) {
cout << "Y " << Y;
} else {
cout << "Y M " << Y;
}
}
view raw bj_1267.cpp hosted with ❤ by GitHub

+ Recent posts