Problem snacks
User CoderBC
Submission Time 2025-03-14 12:53:25
Score 0
Max Time N/A
Max Memory N/A

Compile Error

snacks.cpp:4:2: error: invalid preprocessing directive #typedef
4 | #typedef long long ll
| ^~~~~~~
snacks.cpp: In function ‘int main()’:
snacks.cpp:11:5: error: ‘ll’ was not declared in this scope
11 | ll n, q;
| ^~
snacks.cpp:12:12: error: ‘n’ was not declared in this scope
12 | cin >> n >> q;
| ^
snacks.cpp:12:17: error: ‘q’ was not declared in this scope
12 | cin >> n >> q;
| ^
snacks.cpp:15:7: error: expected ‘;’ before ‘total_sum’
15 | ll total_sum = 0;
| ^~~~~~~~~~
| ;
snacks.cpp:20:9: error: ‘total_sum’ was not declared in this scope
20 | total_sum += a[i];
| ^~~~~~~~~
snacks.cpp:23:13: error: ‘total_sum’ was not declared in this scope
23 | cout << total_sum << "\n";
| ^~~~~~~~~
snacks.cpp:26:11: error: expected ‘;’