Submission #300298

#TimeUsernameProblemLanguageResultExecution timeMemory
300298fpc_coderCluedo (IOI10_cluedo)C++17
50 / 100
177 ms416 KiB
#include <bits/stdc++.h>
#include "grader.h"
#include "cluedo.h"

void Solve() {
    int mur = 1, loc = 1, wep = 1;
    for (mur = 1; mur <= 6; mur++) {
        for (loc = 1; loc <= 10; loc++) {
            for (wep = 1; wep <= 6; wep++) {
                if (Theory(mur, loc, wep) == 0) {
                    return;
                }
            }
        }
    }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...