실행 실패 (제출 코드 컴파일 에러)
Main.cpp:7:1: error: ‘set’ does not name a type 7 | set<int> primeCache; | ^~~ Main.cpp: In function ‘void fillCacheUntil(int)’: Main.cpp:29:13: error: ‘primeCache’ was not declared in this scope 29 | primeCache.insert(i); | ^~~~~~~~~~ Main.cpp: In function ‘int findValues(int)’: Main.cpp:38:19: error: ‘primeCache’ was not declared in this scope 38 | for (auto x : primeCache) { | ^~~~~~~~~~ Main.cpp: In function ‘int main()’: Main.cpp:52:5: error: ‘primeCache’ was not declared in this scope 52 | primeCache.reserve(100000); | ^~~~~~~~~~
정답 개수:
-
틀린 개수:
-
실행 실패 개수:
-
반례를 발견하지 못했습니다.