Submission #704359

#TimeUsernameProblemLanguageResultExecution timeMemory
704359emeraldddCombo (IOI18_combo)C++14
10 / 100
78 ms556 KiB
#include <bits/stdc++.h>
using namespace std;
#include "combo.h"

std::string guess_sequence(int N) {
    string p = "";
    char ch[]={'A','B','X','Y'};
    for(int i=0; i<N; i++) {
        p+=" ";
        for(int j=0; j<4; j++) {
            p[i]=ch[j];
            int coins=press(p);

//            cout<<p<<" "<<coins<<endl;

            if(coins==i+1) break;
        }
    }

    return p;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...