Submission #220174

#TimeUsernameProblemLanguageResultExecution timeMemory
220174kshitij_sodaniCluedo (IOI10_cluedo)C++17
Compilation error
0 ms0 KiB
#include <iostream> #include <vector> #include <algorithm> #include <cassert> #include <cstdio> #include <cluedo.h> #include <grader.h> using namespace std; #define pb push_back #define a first #define b second void solve(){ int i=1; int j=1; int k=1; while(true){ int xx=Theory(i,j,k); if(xx==0){ return; } if(xx==1){ i+=1; } if(xx==2){ j+=1; } if(xx==3){ k+=1; } } }

Compilation message (stderr)

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