| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 997711 | SonicML | Cluedo (IOI10_cluedo) | C++14 | 7 ms | 360 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"
void Solve() {
int a, b, c;
a = b = c = 1;
int result = Theory(a, b, c);
while(result != 0) {
if(result == 1) {
a++;
}else if(result == 2) {
b++;
}else if(result == 3) {
c++;
}
result = Theory(a, b, c);
}
return;
} | # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
