| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 753147 | vjudge1 | Combo (IOI18_combo) | C++17 | 1 ms | 292 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 <iostream>
using namespace std;
std::string guess_sequence(int N) {
string c="ABXY";
for(char p : c)
{
for(char q : c)
{
for(char r : c)
{
string cur="";
cur+=p;
cur+=q;
cur+=r;
int coins = press(cur);
if(coins==3) return cur;
}
}
}
return "";
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
