Submission #300297

#TimeUsernameProblemLanguageResultExecution timeMemory
300297fpc_coderCluedo (IOI10_cluedo)C++17
Compilation error
0 ms0 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;
                }
            }
        }
    }
}

Compilation message (stderr)

/tmp/ccMIm6hq.o: In function `main':
grader.c:(.text.startup+0x31): undefined reference to `Solve()'
collect2: error: ld returned 1 exit status