摘要: CSP-S rp+++++++++++ 数学 快速幂 int pw(int a,int b){ int res=1; while(b){ if(b&1) res=(res*a)%mod; a=(a*a)%mod; b>>=1; } return res; } Lucas(附赠线性求逆元) int n 阅读全文
posted @ 2024-10-25 21:51 Wubaozi123awa 阅读(75) 评论(0) 推荐(0)