제출 #1206032

#제출 시각아이디문제언어결과실행 시간메모리
1206032isamatdin콤보 (IOI18_combo)C++20
10 / 100
19 ms456 KiB
#include <bits/stdc++.h> #include "combo.h" using namespace std; string guess_sequence(int n) { string p; for (int i = 1; i <= n; i++) { p += '.'; for (char &k : (string) "ABXY") { p.back() = k; if (press(p) == i) break; } } return p; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...