Chri_K

2020年9月30日

负进制转换(noip2000)

摘要: #include<iostream>#include<cstdio>#include<cmath>#include<cstring>using namespace std;void change(int n,int r){ if(n==0) return ; int m=n%r; if(m<0) m 阅读全文

posted @ 2020-09-30 23:01 Chri_K 阅读(93) 评论(0) 推荐(0) 编辑
数制转换noip1996

摘要: #include<iostream> using namespace std; int a,b,c,i,m,k,f[1001]; char x,y; int sum(int p,int q) { int s=1; for(int j=1;j<=q;j++) { s*=p; } return s; } 阅读全文

posted @ 2020-09-30 16:13 Chri_K 阅读(121) 评论(0) 推荐(0) 编辑
曹冲养猪(crt)

摘要: //中国剩余定理 //我的70分代码=_= #include <iostream> #include<algorithm> using namespace std; typedef long long ll; ll exgcd(ll a,ll b,ll &x,ll &y) { if(!b) { x 阅读全文

posted @ 2020-09-30 13:50 Chri_K 阅读(170) 评论(0) 推荐(0) 编辑