제출 #1053086

#제출 시각아이디문제언어결과실행 시간메모리
1053086SzymonKrzywda경찰관과 강도 (BOI14_coprobber)C++17
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; vector<vector<bool>> global_a; int start(int N, vector<vector<bool>> A){ for (int i=0; i<N; i++){ for (int j=0; j<N; j++){ global_a[i][j] = A[i][j]; } } return 0; } int nextMove(int R){ return R; }

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

/usr/bin/ld: /tmp/ccpGOQbR.o: in function `main':
grader.cpp:(.text.startup+0x16c): undefined reference to `start(int, bool (*) [500])'
collect2: error: ld returned 1 exit status