| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 305516 | amunduzbaev | 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"
#include <bits/stdc++.h>
using namespace std;
string guess_sequence(int n) {
string p = "";
string s="ABXY";
for(int i=2;i<=n;i++){
for(int j=0;j<4;j++){
if(press((p+s[j]))==i){
p+=s[j];
break;
}
}
}
}
return p;
}
