Problem | prefixsums |
---|---|
User | yqiiiiiii |
Submission Time | 2025-06-17 15:48:24 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
prefixsums.cpp: In function ‘int main()’:
prefixsums.cpp:13:16: error: expected ‘;’ before ‘i’
13 | for(int i = 1l i<=n; i++){
| ^~
| ;
prefixsums.cpp:14:26: error: ‘arr’ was not declared in this scope
14 | psum[i] = psum[i -1] + arr[i-1];
| ^~~