Submission #1223870

#TimeUsernameProblemLanguageResultExecution timeMemory
1223870rhm_ganCluedo (IOI10_cluedo)C++20
50 / 100
45 ms392 KiB
#include "grader.h"
#include "cluedo.h"
using namespace std;

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