QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#320637#7974. 染色locseyCompile Error//C++205.4kb2024-02-03 19:19:062024-02-03 19:19:07

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;}
      |                ^~~~~