# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1027360 | vjudge1 | Ljeto (COCI21_ljeto) | C++98 | 1 ms | 348 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
int main()
{
int N, T, A, B, Time=0, PointA=0, PointB=0, Current=0, PrevTime=0, CurrentS=0;
cin>>N;
for(int i=0; i<N; i++){
cin>>T>>A>>B;
if (A==CurrentS && Current==1 && (T-Time)<=10){
PointA+=50;
}
if (A==CurrentS && Current==2 && (T-Time)<=10){
PointB+=50;
}
if (A==1 || A==2 || A==3 || A==4){
PointA+=100;
Current=1;
CurrentS=A;
}
else {
PointB+=100;
Current=2;
CurrentS=A;
}
Time=T;
}
cout<<PointA<<" "<<PointB;
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |