Problem | gotoubun |
---|---|
User | Pan |
Submission Time | 2023-08-24 19:10:25 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
gotoubun.cpp: In function ‘int main()’:
gotoubun.cpp:11:6: error: conflicting declaration ‘int dp [(N + 1)][(N + 1)]’
11 | int dp[N+1][N+1];
| ^~
gotoubun.cpp:10:25: note: previous declaration as ‘std::vector<std::vector<int> > dp’
10 | vector <vector <int> > dp(N+1, vector <int> (N+1,0));
| ^~
gotoubun.cpp:25:25: error: expected ‘;’ before ‘}’ token
25 | sum = sum%998244353
| ^
| ;
26 |
27 | }
| ~
gotoubun.cpp:32:32: error: expected ‘;’ before ‘}’ token
32 | output = output % 998244353
| ^
| ;
33 | }
| ~