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 "combo.h"
std::string guess_sequence(int N) {
std::string p = "";
int n = N;
char k[4] = {'A','B','X','Y'};
for(int i=0;i<n;i++)
{
for(int j=0;j<4;j++)
{
std:: string ss = p;
ss = ss + k[j];
int xx = press(ss);
if(xx == i+1)
{
p = p + k[j];
break;
}
}
}
return p;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |