Problem | prefixsums |
---|---|
User | god |
Submission Time | 2025-06-20 06:53:18 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
prefixsums.cpp: In function ‘int main()’:
prefixsums.cpp:9:19: error: invalid types ‘<unresolved overloaded function type>[int]’ for array subscript
9 | array.push_back[0];
| ^
prefixsums.cpp:10:17: error: ‘s’ was not declared in this scope
10 | long long psum[s+1];
| ^
prefixsums.cpp:11:2: error: ‘psum’ was not declared in this scope
11 | psum[0] = 0
| ^~~~
prefixsums.cpp:12:21: error: ‘i’ was not declared in this scope
12 | for(long long i =0;i<size;i++){
| ^
prefixsums.cpp:22:3: error: ‘sum’ was not declared in this scope
22 | sum = psum[max] - psum[min];
| ^~~