| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 1227702 | Hamed_Ghaffari | Cluedo (IOI10_cluedo) | C++20 | 3 ms | 408 KiB | 
#include "grader.h"
#include "cluedo.h"
#include <bits/stdc++.h>
void Solve(){
   int r;
   int a=1, b=1, c=1;
   while(1) {
      r = Theory(a, b, c);
      if(r==0) break;
      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... | ||||
