Submission #964918

#TimeUsernameProblemLanguageResultExecution timeMemory
964918marinalucaCluedo (IOI10_cluedo)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h>
#include "grader.h"
using namespace std;

void solve(){
    int i = 1, j = 1, k = 1;
    while (true){
        int val = Theory (i, j, k);
        if (val == 1)
            i ++;
        else if (val == 2)
            j ++;
        else if (val == 3)
            k ++;
        else
            break;
    }
    return;
}

Compilation message (stderr)

/usr/bin/ld: /tmp/ccCFRa71.o: in function `main':
grader.c:(.text.startup+0x49): undefined reference to `Solve()'
collect2: error: ld returned 1 exit status