Submission #1210068

#TimeUsernameProblemLanguageResultExecution timeMemory
1210068That_SalamanderCluedo (IOI10_cluedo)C++20
100 / 100
3 ms392 KiB
#include "grader.h"
#include "cluedo.h"

void Solve(){
    int vals[3] = {1, 1, 1};

    while (true) {
        int res = Theory(vals[0], vals[1], vals[2]);
        if (res == 0) {
            return;
        } else {
            vals[res-1]++;
        }
    }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...