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