0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 22:05:24 +00:00

A - Volleyball

https://codeforces.com/gym/103698/submission/157276915
This commit is contained in:
Baoshuo Ren 2022-05-15 16:39:20 +08:00
parent e843a97129
commit fb6689946b
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

30
Gym/103698/A/A.cpp Normal file
View File

@ -0,0 +1,30 @@
#include <iostream>
using std::cin;
using std::cout;
const char endl = '\n';
int op, x, a, b, aa, bb;
int main() {
std::ios::sync_with_stdio(false);
while (cin >> op >> x) {
(op == 1 ? a : b) += x;
if (std::abs(a - b) >= 2 && (a >= 25 || b >= 25)) {
cout << a << ':' << b << endl;
if (a > b)
aa++;
else
bb++;
a = 0, b = 0;
}
if (aa + bb >= 3) break;
}
cout << (aa < bb) + 1 << endl;
return 0;
}