# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1175169 | natnicha | Cluedo (IOI10_cluedo) | C++20 | 0 ms | 0 KiB |
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++;
}
}
}