| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 1282780 | hayford08 | Cluedo (IOI10_cluedo) | C++20 | 4 ms | 384 KiB | 
#include "grader.h"
#include "cluedo.h"
void Solve(){
   int r;
   int m = 1, l = 1, w = 1;
   for (int cnt = 0; cnt < 20; cnt++) {
      r = Theory(m, l, w);
      if (r == 0) break;
      if (r == 1) m++;
      else if (r == 2) l++;
      else w++;
   }
}
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
