Problem lunchbox
User Lyn
Submission Time 2026-02-07 17:53:15
Score 0
Max Time N/A
Max Memory N/A

Compile Error

cc1plus: error: ‘::main’ must return ‘int’
lunchbox.cpp: In function ‘int main()’:
lunchbox.cpp:12:32: error: expected ‘;’ before ‘for’
12 | sort(reqs.begin(), reqs.end())
| ^
| ;
13 |
14 | for (int i=0; i<m; i++) {
| ~~~
lunchbox.cpp:14:16: error: ‘i’ was not declared in this scope
14 | for (int i=0; i<m; i++) {
| ^
lunchbox.cpp:18:11: error: expected ‘;’ before ‘return’
18 | cout<<ans
| ^
| ;
19 | return 0;
| ~~~~~~