제출 #1105862

#제출 시각아이디문제언어결과실행 시간메모리
1105862abushbandit_콤보 (IOI18_combo)C++17
10 / 100
78 ms1112 KiB
#include "combo.h" #include "bits/stdc++.h" using namespace std; string guess_sequence(int N) { string p = ""; vector<char> a = {'A','B','X','Y'}; for(int i = 0;i < N;i++) { for(int j = 0;j < 4;j++) { p.push_back(a[j]); if(press(p) == i + 1) { break; } p.pop_back(); } } return p; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...