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