제출 #280409

#제출 시각아이디문제언어결과실행 시간메모리
280409amallaCombo (IOI18_combo)C++17
5 / 100
83 ms200 KiB
#include "combo.h"
#include<bits/stdc++.h>

using namespace std;

string guess_sequence(int N) {
    string p = "", test = "";
    int coins = 0;
    for (int i = 0; i<N; ++i) {
        char best = ' ';
        test += ' ';
        for (auto x : "ABXY")  {
            test[i] = x;
            if (coins<press(test)) {
                best = x;
                ++coins;
            }
        }
        p += best;
        test[i] = p[i];
    }
    return p;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...