# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1268648 | atillama | Cluedo (IOI10_cluedo) | C++20 | 3 ms | 408 KiB |
#include "grader.h"
#include "cluedo.h"
#include <bits/stdc++.h>
using namespace std;
void Solve(){
int i = 1, j = 1, k = 1;
while(true){
int r = Theory(i, j, k);
if(r == 0) break;
if(r == 1) i++;
if(r == 2) j++;
if(r == 3) k++;
}
return;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |