# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
908541 | dragusanu_rares | 콤보 (IOI18_combo) | C++14 | 13 ms | 1968 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include "combo.h"
using namespace std;
#define P press
string guess_sequence(int n){
if(n==1){
if(P("X")==1)return "X";
else if(P("Y")==1)return "Y";
else if(P("A")==1)return "A";
else return "B";
}
else{
char ch1,a,b,c;
string S;
if(P("XY")>=1){
if(P("X")==1)ch1='X';
else ch1='Y';
}
else{
if(P("A")==1)ch1='A';
else ch1='B';
}
S=ch1;
if(ch1=='A'){
a='B';
b='X';
c='Y';
}
else if(ch1=='B'){
a='A';
b='X';
c='Y';
}
else if(ch1=='X'){
a='A';
b='B';
c='Y';
}
else{
a='A';
b='B';
c='X';
}
while(S.size()<n-1){
string guess=S+b+S+c+a+S+c+b+S+c+c;
int x=P(guess)-S.size();
if(x==0)S.push_back(a);
else if(x==1)S.push_back(b);
else S.push_back(c);
}
if(P(S+a)==n)return S+a;
else if(P(S+b)==n)return S+b;
else return S+c;
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |