제출 #304348

#제출 시각아이디문제언어결과실행 시간메모리
304348MasterTasterCluedo (IOI10_cluedo)C++14
100 / 100
12 ms256 KiB
#include "grader.h"
#include "cluedo.h"
#include <bits/stdc++.h>

using namespace std;

void Solve(){
    int m, l, v;
    m=l=v=1;

    int teorija=Theory(m, l, v);
    while (teorija)
    {
        if (teorija==1) m++;
        else if (teorija==2) l++;
        else v++;
        teorija=Theory(m, l, v);
    }
    return;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...