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