QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#320637 | #7974. 染色 | locsey | Compile Error | / | / | C++20 | 5.4kb | 2024-02-03 19:19:06 | 2024-02-03 19:19:07 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code:45:16: error: ISO C++ forbids declaration of ‘binom’ with no type [-fpermissive] 45 | inline binom(int n, int m) {if(n < 0 || m < 0 || n < m) return 0; return (ll)fac[n] * ifac[m] % mod * ifac[n - m] % mod;} | ^~~~~