제출 #280408

#제출 시각아이디문제언어결과실행 시간메모리
280408amalla콤보 (IOI18_combo)C++17
0 / 100
1 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;
        }
        p += best;
        test[i] = p[i];
    }
    return p;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...