| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 1175158 | tanapoom | Cluedo (IOI10_cluedo) | C++20 | 0 ms | 0 KiB | 
void solve(){
  int M=1,L=1,W=1,a;
  while(true){
    a=Theory(M,L,W);
    if(a==0){
      return;
    }
    else if(a==1){
      M++;
    }
    else if(a==2){
      L++;
    }
    else if(a==3){
      W++;
    }
  }
}
