# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1187640 | nagorn_ph | Cluedo (IOI10_cluedo) | C++20 | 3 ms | 408 KiB |
#include <bits/stdc++.h>
#include "grader.h"
#include "cluedo.h"
void Solve(){
int a = 1, b = 1, c = 1;
int r = Theory(a, b, c);
while (r) {
if (r == 1) a++;
if (r == 2) b++;
if (r == 3) c++;
r = Theory(a, b, c);
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |