Problem mountainjourney
User Matrixworld
Submission Time 2026-06-24 10:40:06
Score 0
Max Time N/A
Max Memory N/A

Compile Error

mountainjourney.cpp:34:19: error: ‘n’ was not declared in this scope
34 | vector<int> A(n);
| ^
mountainjourney.cpp:35:9: error: expected constructor, destructor, or type conversion before ‘(’ token
35 | sort(A.begin(),A.end());
| ^
mountainjourney.cpp:36:5: error: expected unqualified-id before ‘for’
36 | for(int i=0; i <n(); i++){
| ^~~
mountainjourney.cpp:36:18: error: ‘i’ does not name a type
36 | for(int i=0; i <n(); i++){
| ^
mountainjourney.cpp:36:26: error: ‘i’ does not name a type
36 | for(int i=0; i <n(); i++){
| ^
mountainjourney.cpp:40:18: error: ‘m’ was not declared in this scope
40 | vector<int>B(m)
| ^
mountainjourney.cpp:41:5: error: expected ‘,’ or ‘;’ before ‘sort’
41 | sort(B.begin(),B.end(), greater<int>());