Submission #411157

#TimeUsernameProblemLanguageResultExecution timeMemory
411157Dipto_Debdip콤보 (IOI18_combo)C++14
10 / 100
92 ms472 KiB
#include "combo.h"
#include "bits/stdc++.h"
using namespace std;
#define ll long long int
std::string guess_sequence(int N) {
  string s;
  ll cnt = 1;
  std::vector<char> v = {'A', 'B', 'X', 'Y'};
  for (ll i = 1; i <= N; i++) {
    for (auto j : v) {
      string tmp = s;
      tmp += j;
      if (press(tmp) == cnt) {
        cnt++;
        s = tmp;
        break;
      }
    }
  }
  return s;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...