제출 #1223602

#제출 시각아이디문제언어결과실행 시간메모리
1223602islam_2010Cluedo (IOI10_cluedo)C++20
100 / 100
3 ms408 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 timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...