| Problem | hungrycats2 |
|---|---|
| User | Ap3xthird515 |
| Submission Time | 2026-03-03 17:36:40 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
hungrycats2.cpp: In function ‘int main()’:
hungrycats2.cpp:7:18: error: expected ‘,’ or ‘;’ before ‘:’ token
7 | vector<int> A(N):
| ^
hungrycats2.cpp:9:16: error: ‘i’ was not declared in this scope
9 | for (int i=0; i<N; i++) {
| ^
hungrycats2.cpp:20:14: error: no match for call to ‘(std::vector<int>) (int)’
20 | if(sum>A(N-1)) {
| ^
hungrycats2.cpp:23:16: error: expected ‘;’ before ‘}’ token
23 | cout << "YES"
| ^
| ;
24 | }
| ~