# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
772124 | Alfraganus | Combo (IOI18_combo) | C++14 | 0 ms | 0 KiB |
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"
string guess_sequence(int n)
{
string s;
if(press("A") == 1)s = "A";
else if(press("B") == 1)s = "B";
else if(press("X") == 1)s = "X";
else s = "Y";
char dx[4] = {'A', 'B', 'X', 'Y'};
for(int i = 1; i < n; i ++){
for(int j = 0; j < 4; j ++){
if(dx[j] != s[0]){
if(press(s + dx[j]) == i + 1){
s += dx[j];
break;
}
}
}
}
return s;
}