Submission #236366

#TimeUsernameProblemLanguageResultExecution timeMemory
236366nicolaalexandraCluedo (IOI10_cluedo)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h>
#include "grader.h"
#include "cluedo.h"
using namespace std;

void solve(){

    int i = 1, j = 1, k = 1;
    for (;;){

        int val = Theory(i,j,k);
        if (!val)
            return;

        if (val == 1)
            i++;
        if (val == 2)
            j++;
        if (val == 3)
            k++;
    }

}

Compilation message (stderr)

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