제출 #647607

#제출 시각아이디문제언어결과실행 시간메모리
647607Truitadepatates콤보 (IOI18_combo)C++14
10 / 100
100 ms568 KiB
#include <bits/stdc++.h>
#include "combo.h"
using namespace std;

const int M = 4;
const char LET[] = "ABXY";

string guess_sequence(int N) {
  int len[M];
  string s;

  for (int i = 0; i < N; i++) {
    for (int j = 0; j < M; j++) {
      len[j] = press(s + LET[j]);
    }
    for (int j = 0; j < M; j++) {
      if (len[j] == i+1) {
        s += LET[j];
        break;
      }
    }
  }

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