제출 #560116

#제출 시각아이디문제언어결과실행 시간메모리
560116armashka밀림 점프 (APIO21_jumps)C++17
컴파일 에러
0 ms0 KiB
int n, a[200005]; void init(int N, vector<int> H) { n = N; for (int i = 1; i <= n; ++ i) { a[i] = H[i - 1]; } return; } int minimum_jumps(int A, int B, int C, int D) { return 0; }

컴파일 시 표준 에러 (stderr) 메시지

jumps.cpp:3:18: error: 'vector' has not been declared
    3 | void init(int N, vector<int> H) {
      |                  ^~~~~~
jumps.cpp:3:24: error: expected ',' or '...' before '<' token
    3 | void init(int N, vector<int> H) {
      |                        ^
jumps.cpp: In function 'void init(int, int)':
jumps.cpp:6:10: error: 'H' was not declared in this scope
    6 |   a[i] = H[i - 1];
      |          ^