https://www.acmicpc.net/problem/2852 제출 코드#include #include #include using namespace std;int score[2];int t[2];int main(){ ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int n, team, prev = 0; string str; cin >> n; while(n--) { cin >> team >> str; int time = stoi(str.substr(0, 2)) * 60 + stoi(str.substr(3, 2)); if (score[0] != score[1]) ..