제출 #47787
제출 정보
실행 실패 (제출 코드 컴파일 에러)
Main.cpp: In function ‘int main()’: Main.cpp:10:3: error: ‘map’ was not declared in this scope 10 | map<int, pair<int, list<string>>> mapPeople{}; | ^~~ Main.cpp:3:1: note: ‘std::map’ is defined in header ‘<map>’; did you forget to ‘#include <map>’? 2 | #include <list> +++ |+#include <map> 3 | #include <string> Main.cpp:10:7: error: expected primary-expression before ‘int’ 10 | map<int, pair<int, list<string>>> mapPeople{}; | ^~~ Main.cpp:19:7: error: ‘mapPeople’ was not declared in this scope 19 | mapPeople[Age].first = Age; | ^~~~~~~~~ Main.cpp:23:9: error: ‘mapPeople’ was not declared in this scope 23 | while(mapPeople.size()) | ^~~~~~~~~ Main.cpp:31:51: error: ‘std::__cxx11::list<std::__cxx11::basic_string<char> >::iterator’ has no member named ‘c_str’ 31 | printf("%d %s", CurAge, CurName.begin().c_str()); | ^~~~~ Main.cpp:11:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 11 | scanf("%d", &iN); | ~~~~~^~~~~~~~~~~ Main.cpp:18:12: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 18 | scanf("%d %s", &Age, Name); | ~~~~~^~~~~~~~~~~~~~~~~~~~~
제출 결과
정답 개수:
-
틀린 개수:
-
실행 실패 개수:
-
제출 코드
찾은 반례
반례를 발견하지 못했습니다.