제출 #320591

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

using namespace std;

void Solve(){
   int val[4] = {0, 1, 1, 1};
   while(true){
    int rv = Theory(val[1], val[2], val[3]);
    if(!rv){
        return;
    }
    ++val[rv];
   }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...