| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 696459 | stevancv | Cluedo (IOI10_cluedo) | C++14 | 13 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 <bits/stdc++.h>
#include "cluedo.h"
#include "grader.h"
using namespace std;
void Solve() {
int a, b, c;
a = b = c = 1;
while (1) {
int x = Theory(a, b, c);
if (x == 0) return;
if (x == 1) a += 1;
if (x == 2) b += 1;
if (x == 3) c += 1;
}
}| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
