Submission #716472

#TimeUsernameProblemLanguageResultExecution timeMemory
716472Sandarach151Ljeto (COCI21_ljeto)C++17
25 / 50
1 ms316 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 pla1 = 0; int pla2 = 0; 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 && a==pla1){ score1+=150; } else{ score1+=100; } team1 = t; pla1 = a; } else{ if(t<=team2+10 && a==pla2){ score2+=150; } else{ score2+=100; } team2 = t; pla2=a; } } cout << score1 << ' ' << score2 << '\n'; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...