# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
92963 | temoyanteladze | Combo (IOI18_combo) | C++14 | 0 ms | 0 KiB |
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<bits/stdc++.h>
#include "combo.h"
using namespace std;
string guess_sequence(int n)
{
string s;
if (n==1){
if (press('A'))
s='A';
if (press('B'))
s='B';
if (press('X'))
s='X';
if (press('Y'))
s='Y';
}
return s;
}