0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 18:45:25 +00:00
OI-codes/Gym/103698/A/A.cpp

31 lines
535 B
C++
Raw Normal View History

#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;
}