제출 #342090

#제출 시각아이디문제언어결과실행 시간메모리
342090AlmaCluedo (IOI10_cluedo)C++14
컴파일 에러
0 ms0 KiB
#include <iostream> #include <cluedo.h> #include <grader.h> using namespace std; int Solve (int M, int L, int W) { M = 1; L = 1; W = 1; while (Theory (M, L, W) != 0) { if (Theory (M, L, W) == 1) { M++; } else if (Theory (M, L, W) == 2) { L++; } else { W++; } } return Theory (M, L, W); }

컴파일 시 표준 에러 (stderr) 메시지

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