0_0_25942839_4366.cpp:8:1: error: 'LL' does not name a type
LL num[N][N];
^
0_0_25942839_4366.cpp:9:1: error: 'LL' does not name a type
LL Sum(int x, int y) {
^
0_0_25942839_4366.cpp: In function 'int main()':
0_0_25942839_4366.cpp:38:17: error: 'num' was not declared in this scope
num[j][i - j] = a[Index];
^
0_0_25942839_4366.cpp:45:21: error: 'num' was not declared in this scope
num[i][j] += num[i - 1][j];
^
0_0_25942839_4366.cpp:48:21: error: 'num' was not declared in this scope
num[i][j] += num[i][j - 1];
^
0_0_25942839_4366.cpp:51:21: error: 'num' was not declared in this scope
num[i][j] -= num[i - 1][j - 1];
^
0_0_25942839_4366.cpp:59:13: error: 'LL' was not declared in this scope
LL ans = Sum(x2, y2) + Sum(x1 - 1, y1 - 1);
^
0_0_25942839_4366.cpp:60:13: error: 'ans' was not declared in this scope
ans -= Sum(x2, y1 - 1) + Sum(x1 - 1, y2);
^
0_0_25942839_4366.cpp:60:34: error: 'Sum' was not declared in this scope
ans -= Sum(x2, y1 - 1) + Sum(x1 - 1, y2);
^
|