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 count=0;
std::string lol= "ABXY";
while(true){
for(int i=0; i<4; i++){
std::string t= p+ lol[i];
int c= press(t);
if(c>count){
p= t;
count++;
break;
}
}
if(count==N){break;}
}
return p;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |