제출 #1015215

#제출 시각아이디문제언어결과실행 시간메모리
1015215TroySerCombo (IOI18_combo)C++17
0 / 100
0 ms344 KiB
#include "combo.h"
#include <bits/stdc++.h>
using namespace std;

string guess_sequence(int N) {
  string currPerm = "ABXY";
  do {
    if (press(currPerm.substr(0, 3)) == 3) {
      return currPerm.substr(0, 3);
    }
  } while (next_permutation(currPerm.begin(), currPerm.end()));
  return "ABCABCABC";
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...