# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1125208 | ZyadH1 | 콤보 (IOI18_combo) | C++17 | 0 ms | 0 KiB |
#include "combo.h"
#include <bits/stdc++.h>
using namespace std;
std::string guess_sequence(int N) {
string p , buttons = "ABXY";
string ans = "";
while(1){
for(int i = 0 ; i < 4 ;i++){
p = ans;
p += buttons[i];
if(p.size() > 1 and buttons[i] == p[0]) continue;
int coins = press(p);
if(coins == p.size()){
ans = p;
break;
}
}
if(coins == N) break;
}
return ans;
}