Submission #565861

#TimeUsernameProblemLanguageResultExecution timeMemory
565861imtiyazrasool92Combo (IOI18_combo)C++17
0 / 100
0 ms208 KiB
#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[i]); if (press(P) == (i + 1)) { if (i == 0) { possible.erase(possible.begin() + i); } break; } P.pop_back(); } } return P; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...