Submission #964919

#TimeUsernameProblemLanguageResultExecution timeMemory
964919marinalucaCluedo (IOI10_cluedo)C++17
100 / 100
7 ms596 KiB
#include <bits/stdc++.h>
#include "grader.h"
using namespace std;

void Solve(){
    int i = 1, j = 1, k = 1;
    while (true){
        int val = Theory (i, j, k);
        if (val == 1)
            i ++;
        else if (val == 2)
            j ++;
        else if (val == 3)
            k ++;
        else
            break;
    }
    return;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...