Submission #565864

#TimeUsernameProblemLanguageResultExecution timeMemory
565864imtiyazrasool92Combo (IOI18_combo)C++17
10 / 100
67 ms532 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[j]); if (press(P) == (i + 1)) { break; } P.pop_back(); } } return P; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...