제출 #1015212

#제출 시각아이디문제언어결과실행 시간메모리
1015212TroySer콤보 (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...