| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 706255 | SamNguyen | Cluedo (IOI10_cluedo) | C++14 | 15 ms | 208 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 "grader.h"
#include "cluedo.h"
#include <bits/stdc++.h>
using namespace std;
void Solve(){
int x = 1, y = 1, z = 1;
while (true) {
int err = Theory(x, y, z);
if (err == 0)
return;
if (err == 1)
x++;
if (err == 2)
y++;
if (err == 3)
z++;
}
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
