Submission #662924

#TimeUsernameProblemLanguageResultExecution timeMemory
662924ManoushLjeto (COCI21_ljeto)C++14
50 / 50
1 ms212 KiB
#include <bits/stdc++.h>
#define ll long long int
#define F first
#define S second
#define pb push_back

using namespace std;

int main()
{
    map<ll,ll>m;
    ll r;
    cin>>r;
    ll first=0;
    ll second=0;
    while (r--)
    {
        ll t,a,b;
        cin>>t>>a>>b;
        ll sum=100;
        if (m[a]!=0&&t-m[a]<=10)
        {
            sum+=50;
        }
        m[a]=t;
        if (a<=4)
        {
            first+=sum;
        }
        else
        {
            second+=sum;
        }
    }
    cout<<first<<" "<<second<<endl;
    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...