실행 실패 (제출 코드 컴파일 에러)
Main.cpp:64:2: error: stray ‘#’ in program 64 | }#include <iostream> | ^ Main.cpp:64:3: error: ‘include’ does not name a type 64 | }#include <iostream> | ^~~~~~~ Main.cpp:69:5: error: redefinition of ‘int dx [4]’ 69 | int dx[4] = {1, -1, 0, 0}; | ^~ Main.cpp:6:5: note: ‘int dx [4]’ previously defined here 6 | int dx[4] = {1, -1, 0, 0}; | ^~ Main.cpp:70:5: error: redefinition of ‘int dy [4]’ 70 | int dy[4] = {0, 0, 1, -1}; | ^~ Main.cpp:7:5: note: ‘int dy [4]’ previously defined here 7 | int dy[4] = {0, 0, 1, -1}; | ^~ Main.cpp:72:6: error: redefinition of ‘void bfs(std::vector<std::vector<bool> >&, const std::vector<std::__cxx11::basic_string<char> >&, int, int)’ 72 | void bfs(vector<vector<bool>>& visited, const vector<string>& board, int x, int y) { | ^~~ Main.cpp:9:6: note: ‘void bfs(std::vector<std::vector<bool> >&, const std::vector<std::__cxx11::basic_string<char> >&, int, int)’ previously defined here 9 | void bfs(vector<vector<bool>>& visited, const vector<string>& board, int x, int y) { | ^~~ Main.cpp:92:5: error: redefinition of ‘int boardSearch(const std::vector<std::__cxx11::basic_string<char> >&)’ 92 | int boardSearch(const vector<string>& board) { | ^~~~~~~~~~~ Main.cpp:29:5: note: ‘int boardSearch(const std::vector<std::__cxx11::basic_string<char> >&)’ previously defined here 29 | int boardSearch(const vector<string>& board) { | ^~~~~~~~~~~ Main.cpp:107:5: error: redefinition of ‘int main()’ 107 | int main() { | ^~~~ Main.cpp:44:5: note: ‘int main()’ previously defined here 44 | int main() { | ^~~~
정답 개수:
-
틀린 개수:
-
실행 실패 개수:
-
비공개 코드입니다. 코드 작성자만 볼 수 있습니다.
반례를 발견하지 못했습니다.