摘要: 数学部分 数论 整合包 #define LL long long inline LL mul(LL a,LL b,LL mod){LL ans=0;while(b){if(b&1)ans=(ans+a)%mod;a=(a+a)%mod;b>>=1;}return ans;} inline LL po 阅读全文
posted @ 2021-02-03 10:55 江北南风 阅读(90) 评论(0) 推荐(0) 编辑