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"
using namespace std;
std::string guess_sequence(int N) {
string P, possible = "ABXY";
for (int i = 0; i < N; i++) {
for (int j = 0; j < (int)possible.size(); j++) {
P.push_back(possible[j]);
if (press(P) == (i + 1)) {
break;
}
P.pop_back();
}
}
return P;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |