제출 #716469

#제출 시각아이디문제언어결과실행 시간메모리
716469Sandarach151Ljeto (COCI21_ljeto)C++17
10 / 50
1 ms324 KiB
#include<bits/stdc++.h> using namespace std; int main(){ ios_base::sync_with_stdio(false); cin.tie(NULL); int n; cin >> n; int team1 = -11; int team2 = -11; int score1 = 0; int score2 = 0; for(int i=0; i<n; i++){ int t, a, b; cin >> t >> a >> b; if(a<=4){ if(t<=team1+10){ score1+=150; } else{ score1+=100; } team1 = t; } else{ if(t<=team2+10){ score2+=150; } else{ score2+=100; } team2 = t; } } cout << score1 << ' ' << score2 << '\n'; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...