| Problem | potatosalad |
|---|---|
| User | Ast8ine |
| Submission Time | 2026-02-16 12:25:22 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
potatosalad.cpp: In function ‘int main()’:
potatosalad.cpp:13:35: error: ‘arr’ was not declared in this scope
13 | int* max_ptr = max_element(begin(arr), end(arr));
| ^~~
potatosalad.cpp:16:2: error: expected ‘,’ or ‘;’ before ‘for’
16 | for (int i = mv; i < n - 1; ++i) {
| ^~~
potatosalad.cpp:16:19: error: ‘i’ was not declared in this scope
16 | for (int i = mv; i < n - 1; ++i) {
| ^
potatosalad.cpp:20:7: error: redeclaration of ‘int* max_ptr’
20 | int* max_ptr = max_element(begin(arr), end(arr));
| ^~~~~~~
potatosalad.cpp:13:7: note: ‘int* max_ptr’ previously declared here
13 | int* max_ptr = max_element(begin(arr), end(arr));
| ^~~~~~~
potatosalad.cpp:22:5: error: expected ‘,’ or ‘;’ before ‘std’
22 | std::cout << mv << smv;
| ^~~