This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "combo.h"
#include<bits/stdc++.h>
using namespace std ;
string guess_sequence(int N) {
vector<string> s = {"A", "B", "X", "Y"} ;
string sat = "" ;
for(string a : s){
for(string b : s){
for(string c : s){
if(press(a+b+c) == 3) return a+b+c ;
}
}
}
return sat ;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |