실행 실패 (제출 코드 컴파일 에러)
Main.cpp: In function ‘void solution()’: Main.cpp:24:27: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<int>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare] 24 | for (int i = k; i < data.size() - k; i++) | ~~^~~~~~~~~~~~~~~~~ Main.cpp: At global scope: Main.cpp:46:6: error: redefinition of ‘void solution()’ 46 | void solution() | ^~~~~~~~ Main.cpp:8:6: note: ‘void solution()’ previously defined here 8 | void solution() | ^~~~~~~~ Main.cpp: In function ‘void solution()’: Main.cpp:62:27: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<int>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare] 62 | for (int i = k; i < data.size() - k; i++) | ~~^~~~~~~~~~~~~~~~~ Main.cpp: At global scope: Main.cpp:68:5: error: redefinition of ‘int main()’ 68 | int main(void) | ^~~~ Main.cpp:30:5: note: ‘int main()’ previously defined here 30 | int main(void) | ^~~~
정답 개수:
-
틀린 개수:
-
실행 실패 개수:
-
반례를 발견하지 못했습니다.