Submission #1015215

#TimeUsernameProblemLanguageResultExecution timeMemory
1015215TroySerCombo (IOI18_combo)C++17
0 / 100
0 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 "ABCABCABC"; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...