MnZn 想知道为什么本地测试过不去

P3807 【模板】卢卡斯定理/Lucas 定理

破案了,求组合数没有判断 $a>b$。 ```cpp LL C(LL a,LL b) { if(a<b) return 0; return mul[a]*mul2[a-b]%p*mul2[b]%p; } ```
by simonG @ 2023-04-23 14:33:35


|