답안 #605802

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
605802 2022-07-26T02:29:20 Z kawaii 비밀 (JOI14_secret) C++14
컴파일 오류
0 ms 0 KB
#include "secret.h"

void Init(int N, int A[]){
    int x = Secret(0, 1000000000);
}

int Query(int L, int R){
    int ans = A[L];
    for(int i = L + 1; i <= R; i++) ans += A[i];
    return ans;
}

Compilation message

secret.cpp: In function 'void Init(int, int*)':
secret.cpp:4:9: warning: unused variable 'x' [-Wunused-variable]
    4 |     int x = Secret(0, 1000000000);
      |         ^
secret.cpp: In function 'int Query(int, int)':
secret.cpp:8:15: error: 'A' was not declared in this scope
    8 |     int ans = A[L];
      |               ^