제출 #899553

#제출 시각아이디문제언어결과실행 시간메모리
899553SuPythony콤보 (IOI18_combo)C++17
10 / 100
32 ms1460 KiB
#include<bits/stdc++.h>
 
int press(std::string p);

std::string guess_sequence(int n) {
    std::string ans="";
    if (press("A")) ans="A";
    else if (press("B")) ans="B";
    else if (press("X")) ans="X";
    else ans="Y";
    std::string f=ans;
    int l=1;
    while (l<n) {
        if (f!="A"&&press(ans+"A")>l) {
            ans+="A";
        } else if (f!="B"&&press(ans+"B")>l) {
            ans+="B";
        } else if (f!="X"&&press(ans+"X")>l) {
            ans+="X";
        } else {
            ans+="Y";
        }
        l++;
    }
    return ans;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...