Problem taskmanaging
User shenshiqi
Submission Time 2025-07-13 12:21:28
Score 0
Max Time N/A
Max Memory N/A

Compile Error

taskmanaging.cpp: In function ‘int main()’:
taskmanaging.cpp:8:2: error: ‘ll’ was not declared in this scope
8 | ll q;
| ^~
taskmanaging.cpp:9:9: error: ‘q’ was not declared in this scope
9 | cin >> q;
| ^
taskmanaging.cpp:10:12: error: template argument 2 is invalid
10 | vector <ll> tasks;
| ^
taskmanaging.cpp:11:9: error: expected ‘;’ before ‘i’
11 | for (ll i = 0; i < q; ++i){
| ^~
| ;
taskmanaging.cpp:11:17: error: ‘i’ was not declared in this scope
11 | for (ll i = 0; i < q; ++i){
| ^
taskmanaging.cpp:12:5: error: expected ‘;’ before ‘type’
12 | ll type, time;
| ^~~~~
| ;
taskmanaging.cpp:13:10: error: ‘type’ was not declared in this scope; did you mean ‘wctype’?
13 | cin >> type >> time;
| ^~~~
| wctype
taskma