제출 #783122

#제출 시각아이디문제언어결과실행 시간메모리
783122Mouad_ouj콤보 (IOI18_combo)C++17
10 / 100
62 ms460 KiB
#include<bits/stdc++.h> #include "combo.h" using namespace std; string guess_sequence(int n) { string tab[4]={"A","B","X","Y"}; string ans=""; for(int y=0;y<n;y++) { for(int x=0;x<4;x++) { if(press(ans+tab[x])==y+1) { ans+=tab[x]; break; } } } return ans; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...