| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 604108 | Hussein3600 | Karte (COCI15_karte) | C++14 | 1 ms | 300 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 ;
typedef long long ll ;
int main()
{
    map<string,ll> mp ;
    bool ok=true;
    map<char,ll> p;
    string s , t;
    cin >> s ;
    for(int i=0;i<s.size();i+=3)
    {
        t="";
        t+=s[i]+s[i+1]+s[i+2] ;
        if(mp[t]>0)ok=false;
        mp[t]++;
        p[s[i]]++;
    }
    if(ok)
    cout<<13-p['P']<<" "<<13-p['K']<<" "<<13-p['H']<<" "<<13-p['T']<<endl;
    else cout<<"GRESKA";
}
Compilation message (stderr)
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
