# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
153855 | AlexPascu007 | Karte (COCI15_karte) | C++98 | 3 ms | 400 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <cstring>
using namespace std;
int i,l,x,p[15],k[15],h[15],t[15],sp,sk,sh,st;
char s[1010];
int main() {
cin>>s;
l=strlen(s);
for (i=0;i<l;i+=3) {
if (s[i]=='P') {
if (s[i+1]=='0') {
x=s[i+2]-'0';
p[x]++;
}
else {
x=(s[i+1]-'0')*10+(s[i+2]-'0');
p[x]++;
}
}
else if (s[i]=='K') {
if (s[i+1]=='0') {
x=s[i+2]-'0';
k[x]++;
}
else {
x=(s[i+1]-'0')*10+(s[i+2]-'0');
k[x]++;
}
}
else if (s[i]=='H') {
if (s[i+1]=='0') {
x=s[i+2]-'0';
h[x]++;
}
else {
x=(s[i+1]-'0')*10+(s[i+2]-'0');
h[x]++;
}
}
else if (s[i]=='T') {
if (s[i+1]=='0') {
x=s[i+2]-'0';
t[x]++;
}
else {
x=(s[i+1]-'0')*10+(s[i+2]-'0');
t[x]++;
}
}
}
for (i=1;i<=13;i++) {
if (p[i]>1||k[i]>1||h[i]>1||t[i]>1) {
cout<<"GRESKA";
return 0;
}
sp+=p[i], sk+=k[i], sh+=h[i], st+=t[i];
}
cout<<13-sp<<" "<<13-sk<<" "<<13-sh<<" "<<13-st;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |