제출 #583880

#제출 시각아이디문제언어결과실행 시간메모리
583880LIF콤보 (IOI18_combo)C++14
10 / 100
75 ms556 KiB
#include "combo.h" std::string guess_sequence(int N) { std::string p = ""; int n = N; char k[4] = {'A','B','X','Y'}; for(int i=0;i<n;i++) { for(int j=0;j<4;j++) { std:: string ss = p; ss = ss + k[j]; int xx = press(ss); if(xx == i+1) { p = p + k[j]; break; } } } return p; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...