이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#include<combo.h>
#define N 305
string guess_sequence(int n){
int i,j,cnt;
string s,t;
if(press("AB")){
if(press("A"))s="A";
else s="B";
}
else{
if(press("X"))s="X";
else s="Y";
}
if(s!="A")t+="A";
if(s!="B")t+="B";
if(s!="X")t+="X";
if(s!="Y")t+="Y";
if(n==1)return s;
for(i=2;i<n;i++){
string temp=s;
for(j=0;j<3;j++){
temp+=t[0];
temp+=t[j];
temp+=s;
}
temp+=t[1];
cnt=press(temp);
if(cnt==i+1)s+=t[0];
else if(cnt==i)s+=t[1];
else s+=t[2];
}
if(press(s+t[0]+s+t[1])==n){
if(press(s+t[0])==n)return s+t[0];
return s+t[1];
}
else return s+t[2];
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |