Submission #1015212

#TimeUsernameProblemLanguageResultExecution timeMemory
1015212TroySerCombo (IOI18_combo)C++17
0 / 100
1 ms344 KiB
#include "combo.h" #include <bits/stdc++.h> using namespace std; string guess_sequence(int N) { string currPerm = "ABXY"; do { if (press(currPerm.substr(0, 3)) == 3) { return currPerm.substr(0, 3); } } while (next_permutation(currPerm.begin(), currPerm.end())); return ""; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...