# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
499476 | 2021-12-28T13:38:09 Z | adam | Ljeto (COCI21_ljeto) | C++14 | 0 ms | 0 KB |
#include <bits/stdc++.h> using namespace std; int a[9]; int main() { int t,f,l,p=0,o=0,n; cin>>n; for (int i=0;i<n;i++) { cin>>t>>f>>l; if (f>=1 && f<=4) { if (t-a[f]<=10 && a[f]!=0) { p+=150; a[f]=t; } else { p+=100; a[f]=t; } } else if (a<=8 && a>=5) { if (t-a[f]<=10 && a[f]!=0) { o+=150; a[f]=t; } else { o+=100; a[f]=t; } } } cout<<p<<' '<<o; return 0; }