Submission #1004777

#TimeUsernameProblemLanguageResultExecution timeMemory
100477712345678Ljeto (COCI21_ljeto)C++17
50 / 50
0 ms348 KiB
#include <bits/stdc++.h>

using namespace std;

int n, t, a, b, lst[12], x, y;

int main()
{
    cin.tie(NULL)->sync_with_stdio(false);
    for (int i=1; i<=8; i++) lst[i]=-100;
    cin>>n;
    for (int i=1; i<=n; i++)
    {
        cin>>t>>a>>b;
        if (a<=4)
        {
            x+=100;
            if (t-lst[a]<=10) x+=50;
            lst[a]=t;
        }
        else
        {
            y+=100;
            if (t-lst[a]<=10) y+=50;
            lst[a]=t;
        }
    }
    cout<<x<<' '<<y;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...