| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 1284196 | ggillianjiang | Cluedo (IOI10_cluedo) | C++20 | 4 ms | 384 KiB | 
#include "grader.h"
#include "cluedo.h"
using namespace std;
void Solve(){
   int m = 1, l = 1, w = 1, t;
   while(true){
      t = Theory(m, l, w);
      if(t==0) break;
      if(t==1) m++;
      if(t==2) l++;
      if(t==3) w++;
   }
}
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
