Submission #1057112

# Submission time Handle Problem Language Result Execution time Memory
1057112 2024-08-13T14:12:54 Z manhlinh1501 Secret (JOI14_secret) C++17
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
const i64 MOD = 1e9 + 7;
const int MAXN = 1e3 + 5;

int N;
int a[MAXN];
i64 sum[MAXN][MAXN];

void Init(int N, int A[]) {
    for(int i = 1; i <= N; i++) {
        sum[i][i] = a[i];
        for(int j = i + 1; j <= N; j++) {
            sum[i][j] = Secret(sum[i][j - 1], a[j]);
        }
    }
}

i64 Query(int L, int R) {
    return sum[L][R];
}

Compilation message

secret.cpp: In function 'void Init(int, int*)':
secret.cpp:15:25: error: 'Secret' was not declared in this scope
   15 |             sum[i][j] = Secret(sum[i][j - 1], a[j]);
      |                         ^~~~~~