Submission #199315

#TimeUsernameProblemLanguageResultExecution timeMemory
199315mythosCluedo (IOI10_cluedo)C11
100 / 100
21 ms380 KiB
#include "grader.h"
#include "cluedo.h"

void Solve() {
    int m = 1, l = 1, w = 1;

    while (1) {
        int t = Theory(m, l, w);
        if (t == 1) m++;
        if (t == 2) l++;
        if (t == 3) w++;
        if (t == 0) break;
    }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...