QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#170345 | #5748. Determinant, or...? | ucup-team983# | Compile Error | / | / | C++17 | 1.3kb | 2023-09-09 15:03:46 | 2023-09-09 15:03:46 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code:9:1: error: expected unqualified-id before ‘/’ token 9 | / dx[4] = {1,-1,0,0},dy[4] = {0,0,1,-1}; | ^ answer.code:9:21: error: expected unqualified-id before ‘,’ token 9 | / dx[4] = {1,-1,0,0},dy[4] = {0,0,1,-1}; | ^ answer.code:9:28: error: expected constructor, destructor, or type conversion before ‘=’ token 9 | / dx[4] = {1,-1,0,0},dy[4] = {0,0,1,-1}; | ^ answer.code:13:1: error: expected unqualified-id before ‘/’ token 13 | / qmi(int a, int b, int p){ll res = 1 % p;while (b){if (b & 1) res = res * a % p;a = a * (ll)a % p;b >>= 1;}return res;} | ^