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