| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 | 
|---|---|---|---|---|---|---|---|
| 1284193 | ggillianjiang | Cluedo (IOI10_cluedo) | C++20 | 1 ms | 332 KiB | 
#include "grader.h"
#include "cluedo.h"
using namespace std;
void Solve(){
   int m, l, w, t;
   m=0;
   l=0;
   w=0;
   while(true){
      t = Theory(m, l, w);
      if(t==0) break;
      else if(t==1) m++;
      else if(t==2) l++;
      else w++;
   }
   return;
}
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
