Submission #224437

#TimeUsernameProblemLanguageResultExecution timeMemory
224437jhnah917Cluedo (IOI10_cluedo)C++14
100 / 100
20 ms512 KiB
#include "grader.h"
#include "cluedo.h"
#include <bits/stdc++.h>
using namespace std;

void Solve(){
    int a[] = {0, 1, 1, 1};
    while(1){
        int t = Theory(a[1], a[2], a[3]);
        if(!t) break;
        a[t]++;
    }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...