| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 313630 | baibhav26062008 | Combo (IOI18_combo) | C++14 | 0 ms | 200 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 "combo.h"
#include <bits/stdc++.h>
using namespace std;
string guess_sequence(int N)
{
int x = 4;
string all = "ABXY";
string s(N,'A');
for(int i=0;i<N;i++)
{
bool found=false;
for(int j=0;j<x;j++)
{
if (found) break;
s[i] = all[j];
cout << press(s) << endl;
if (press(s)-1 == i)
{
found = true;
break;
}
else
continue;
}
}
return s;
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
