| Problem | contestcalc |
|---|---|
| User | starfal |
| Submission Time | 2026-03-07 10:29:14 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
contestcalc.cpp: In function ‘int main()’:
contestcalc.cpp:9:5: error: ‘map’ was not declared in this scope
9 | map<string, int> score;
| ^~~
contestcalc.cpp:3:1: note: ‘std::map’ is defined in header ‘<map>’; did you forget to ‘#include <map>’?
2 | #include <unordered_map>
+++ |+#include <map>
3 | using namespace std;
contestcalc.cpp:9:15: error: expected primary-expression before ‘,’ token
9 | map<string, int> score;
| ^
contestcalc.cpp:9:17: error: expected primary-expression before ‘int’
9 | map<string, int> score;
| ^~~
contestcalc.cpp:15:9: error: ‘score’ was not declared in this scope
15 | score[name] = s;
| ^~~~~
contestcalc.cpp:26:18: error: ‘score’ was not declared in this scope
26 | total += score[name];
| ^~~~~