제출 #1146671

#제출 시각아이디문제언어결과실행 시간메모리
1146671kvintsekstakord콤보 (IOI18_combo)C++20
0 / 100
0 ms408 KiB
#include "combo.h"
#include <bits/stdc++.h>

using namespace std;

string chars = "ABXY";

string guess_sequence(int N) {
  
  string S = "";
  for(int i = 0; i < 4; i++){
    int res = press(to_string(chars[i]));
    if(res) S+=chars[i];
  }
  for(int i = 0; i < N-1; i++){
    for(int j = 0; j < 4; j++){
      if(chars[j]==S[0]) continue;

      int res = press(S+chars[j]);
      if(res==S.length()+1) S+=chars[j];
    }
  }

  return S;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...