| Problem | thumper2 |
|---|---|
| User | Kannan |
| Submission Time | 2026-02-18 15:26:37 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
thumper2.cpp:4:7: error: conflicting declaration ‘using llu = long long unsigned int’
4 | using llu = long long unsigned;
| ^~~
thumper2.cpp:3:7: note: previous declaration as ‘using llu = long long int’
3 | using llu = long long;
| ^~~
thumper2.cpp: In function ‘int main()’:
thumper2.cpp:10:14: error: ‘ll’ was not declared in this scope; did you mean ‘llu’?
10 | vector<pair<ll,ll>> s;
| ^~
| llu
thumper2.cpp:10:17: error: template argument 1 is invalid
10 | vector<pair<ll,ll>> s;
| ^~
thumper2.cpp:10:19: error: template argument 1 is invalid
10 | vector<pair<ll,ll>> s;
| ^~
thumper2.cpp:10:19: error: template argument 2 is invalid
thumper2.cpp:15:5: error: request for member ‘push_back’ in ‘s’, which is of non-class type ‘int’
15 | s.push_back(make_pair(r,c));