0_0_20962025_23306.cpp:4:24: error: stray '#' in program
const int maxn = 1000 + 5;
^
0_0_20962025_23306.cpp:11:29: error: stray '#' in program
for(int i = 2;i <= n; i++) {
^
0_0_20962025_23306.cpp:11:34: error: stray '#' in program
for(int i = 2;i <= n; i++) {
^
0_0_20962025_23306.cpp:12:32: error: stray '#' in program
for(int j = 0;j < i; j++) {
^
0_0_20962025_23306.cpp:12:37: error: stray '#' in program
for(int j = 0;j < i; j++) {
^
0_0_20962025_23306.cpp:13:39: error: stray '#' in program
dp[i][j] = (dp[i-1][j]*(j+1) + dp[i-1][j-1]*(i-j))%mod;
^
0_0_20962025_23306.cpp:13:47: error: stray '#' in program
dp[i][j] = (dp[i-1][j]*(j+1) + dp[i-1][j-1]*(i-j))%mod;
^
0_0_20962025_23306.cpp:4:29: error: expected unqualified-id before numeric constant
const int maxn = 1000 + 5;
^
0_0_20962025_23306.cpp: In function 'void init(int)':
0_0_20962025_23306.cpp:11:32: error: expected ')' before ';' token
for(int i = 2;i <= n; i++) {
^
0_0_20962025_23306.cpp:11:35: error: lvalue required as unary '&' operand
for(int i = 2;i <= n; i++) {
^
0_0_20962025_23306.cpp:11:38: error: expected primary-expression before ')' token
for(int i = 2;i <= n; i++) {
^
|