2016年11月7日

扩展lucas定理

摘要: i64 POW(i64 a,i64 b,i64 mod) { i64 ans=1; while(b) { if(b&1) ans=ans*a%mod; a=a*a%mod; b>>=1; } return ans; } i64 POW(i64 a,i64 b) { i64 ans=1; wh... 阅读全文

posted @ 2016-11-07 22:23 very_czy 阅读(354) 评论(0) 推荐(0) 编辑

导航