Problem lunchbox
User redline
Submission Time 2025-06-15 23:32:41
Score 0
Max Time N/A
Max Memory N/A

Compile Error

lunchbox.cpp: In function ‘int main()’:
lunchbox.cpp:10:16: error: expected ‘;’ before ‘}’ token
10 | cin >> arr[i]
| ^
| ;
11 | }
| ~
lunchbox.cpp:13:2: error: ‘sort’ was not declared in this scope; did you mean ‘qsort’?
13 | sort(arr, arr + m);
| ^~~~
| qsort
lunchbox.cpp:16:31: error: expected ‘;’ before ‘N’
16 | if (N - arr[i] < 0) continue
| ^
| ;
17 | N -= arr[i];
| ~