| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 658432 | Nhoksocqt1 | Karte (COCI15_karte) | C++17 | 1 ms | 332 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;
#define inf 0x3f3f3f3f
#pragma GCC target ("avx2")
#pragma GCC optimization ("O3")
#pragma GCC optimization ("unroll-loops")
#define fi first
#define se second
typedef long long ll;
typedef pair<int, int> ii;
template<class X, class Y>
	inline bool maximize(X &x, const Y &y) {return (x < y ? x = y, 1 : 0);}
template<class X, class Y>
	inline bool minimize(X &x, const Y &y) {return (x > y ? x = y, 1 : 0);}
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
int Random(int l, int r) {
    return uniform_int_distribution<int>(l, r)(rng);
}
int readInt() {
	bool minus = false;
	int result = 0;
	char ch;
	ch = getchar();
	while(true) {
		if(ch == '-') break;
		if(ch >= '0' && ch <= '9') break;
		ch = getchar();
	}
	if(ch == '-') minus = true; else result = ch - '0';
	while(true) {
		ch = getchar();
		if (ch < '0' || ch > '9') break;
		result = result * 10 + (ch - '0');
	}
	if(minus)
		return -result;
	else
		return result;
}
string str;
int cnt[4], idx[260];
bool dx[15][4];
void process() {
    cin >> str;
    idx['P'] = 0, idx['K'] = 1, idx['H'] = 2, idx['T'] = 3;
    int strLen(str.size());
    for (int i = 0; i < strLen; i += 3) {
        int rankc = idx[str[i]];
        int val = (str[i + 1] - '0') * 10 + str[i + 2] - '0';
        if(dx[val][rankc]) {
            cout << "GRESKA";
            return;
        }
        dx[val][rankc] = 1;
        ++cnt[rankc];
    }
    for (int i = 0; i < 4; ++i)
        cout << 13 - cnt[i] << ' ';
}
int main() {
    ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
//    freopen("karte.inp", "r", stdin);
//    freopen("karte.out", "w", stdout);
    process();
    return 0;
}
Compilation message (stderr)
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
