Submission #964918

# Submission time Handle Problem Language Result Execution time Memory
964918 2024-04-17T17:43:53 Z marinaluca Cluedo (IOI10_cluedo) C++17
Compilation error
0 ms 0 KB
#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

/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