QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#56257 | #3353. Robberies | GuanYunchang | Compile Error | / | / | C++17 | 661b | 2022-10-18 09:33:22 | 2022-10-18 09:33:23 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code:6:19: error: expected ‘]’ before ‘;’ token 6 | #define maxn 10000; | ^ answer.code:7:11: note: in expansion of macro ‘maxn’ 7 | double dp[maxn]; | ^~~~ answer.code:7:15: error: expected unqualified-id before ‘]’ token 7 | double dp[maxn]; | ^ answer.code: In function ‘int main()’: answer.code:27:17: error: ‘dp’ was not declared in this scope 27 | dp[0]=1; | ^~