실행 실패 (제출 코드 컴파일 에러)
Main.cpp: In function ‘void DFS(int, int, int, int)’: Main.cpp:24:12: error: too few arguments to function ‘void DFS(int, int, int, int)’ 24 | DFS(maxIdx, i, cnt + 1); | ~~~^~~~~~~~~~~~~~~~~~~~ Main.cpp:16:6: note: declared here 16 | void DFS(int maxIdx, int ith, int cnt, int boundary) | ^~~ Main.cpp: In function ‘int main()’: Main.cpp:44:36: error: too few arguments to function ‘void DFS(int, int, int, int)’ 44 | for (int i = 0; i < N; i++) DFS(N, i, 1); | ~~~^~~~~~~~~ Main.cpp:16:6: note: declared here 16 | void DFS(int maxIdx, int ith, int cnt, int boundary) | ^~~
정답 개수:
-
틀린 개수:
-
실행 실패 개수:
-
반례를 발견하지 못했습니다.