| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1276781 | sagnbaevv | Cluedo (IOI10_cluedo) | C++20 | 4 ms | 384 KiB |
#include "grader.h"
#include "cluedo.h"
void Solve(){
int i = 1, j = 1, k = 1;
while (true) {
int ans = Theory(i, j, k);
if (ans == 0) {
return;
}
else if (ans == 1) {
i++;
}
else if (ans == 2) {
j++;
}
else {
k++;
}
}
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
