# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
960227 | ezzzay | Karte (COCI15_karte) | C++14 | 1 ms | 460 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define ff first
#define ss second
#define pb push_back
const int N=1e6+3;
char arr[N];
signed main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
string s;
cin>>s;
map<char,int>mp;
mp['H'];
mp['P'];
mp['K'];
mp['T'];
map<string,int>mp2;
for(int i=0;i<s.size();i+=3){
char col=s[i];
mp[col]++;
string s2 = s.substr(i,3);
if(mp2[s2]==1){
cout<<"GRESKA";
return 0;
}
mp2[s2]++;
}
cout<<13-mp['P']<<" "<<13-mp['K']<<" "<<13-mp['H']<<" "<<13-mp['T'];
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |