| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 | 
|---|---|---|---|---|---|---|---|
| 1175124 | khunnapach | Cluedo (IOI10_cluedo) | C++20 | 3 ms | 392 KiB | 
#include "grader.h"
#include "cluedo.h"
void Solve(){
   int M=1, L=1, W=1;
   int r = -1;
   while (r != 0) {
      r = Theory(M, L, W);
      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... | ||||
