Problem | eatingparallelograms |
---|---|
User | Alden |
Submission Time | 2025-06-20 15:37:18 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
eatingparallelograms.cpp:20:19: error: missing terminating ' character
20 | cout << maxRes << '\n’;
| ^~~~~~~
eatingparallelograms.cpp:1:1: error: ‘ong’ does not name a type; did you mean ‘long’?
1 | ong long N, K, currRes = 0, maxRes = 0;
| ^~~
| long
eatingparallelograms.cpp:2:1: error: ‘vector’ does not name a type
2 | vector<long long> V;
| ^~~~~~
eatingparallelograms.cpp:3:1: error: ‘cin’ does not name a type
3 | cin >> N >> K;
| ^~~
eatingparallelograms.cpp:4:1: error: expected unqualified-id before ‘for’
4 | for (int i = 0; i < N; i++){
| ^~~
eatingparallelograms.cpp:4:17: error: ‘i’ does not name a type
4 | for (int i = 0; i < N; i++){
| ^
eatingparallelograms.cpp:4:24: error: ‘i’ does not name a type
4 | for (int i = 0; i < N; i++){
| ^
eatingp