| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1176493 | thanapat | Cluedo (IOI10_cluedo) | C++20 | 3 ms | 392 KiB |
#include "grader.h"
#include "cluedo.h"
void Solve(){
int a = 1, b = 1, c = 1, r;
while(1 == 1){
r = Theory(a,b,c);
if (r == 0) return;
else if(r == 1){
a++;
}
else if(r == 2){
b++;
}
else if(r == 3){
c++;
}
}
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
