2016年11月19日

中国剩余定理

摘要: #include #include using namespace std; #define LL __int64 #define ll I64 void exgcd(LL a,LL b,LL &d,LL &x,LL &y) { if(b==0) { d=a; x=1; y=0; } else { ... 阅读全文

posted @ 2016-11-19 08:20 左岸zero 阅读(428) 评论(0) 推荐(0) 编辑

导航