| Problem | prefixsums |
|---|---|
| User | R9q5P8 |
| Submission Time | 2025-10-25 22:08:39 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
prefixsums.cpp: In function ‘int main()’:
prefixsums.cpp:18:25: error: expected ‘,’ or ‘;’ before ‘=’ token
18 | vector<int> pSums(n+1) = {0};
| ^
prefixsums.cpp:30:28: error: lvalue required as left operand of assignment
30 | &a = pSums[r] - pSums[i-1];
| ^