Submission #342083

#TimeUsernameProblemLanguageResultExecution timeMemory
342083AlmaCluedo (IOI10_cluedo)C++14
0 / 100
4 ms364 KiB
#include <iostream>
#include <cluedo.h>
#include <grader.h>
using namespace std;


void Solve () {
    int M = 1; int L = 1; int W = 1;
    while (Theory (M, L, W) != 0) {
        if (Theory (M, L, W) == 1) { M++; }
        else if (Theory (M, L, W) == 2) { L++; }
        else { W++; }
    }
    return;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...