Chri_K

2020年9月18日

noip2013d1t1(转圈游戏)

摘要: //快速幂 #include<iostream>#include<cstdio>using namespace std;int n,m,x;long long k;int ans=1;int fstpow(int a,long long b){ while(b>0) { if(b%2==1) { a 阅读全文

posted @ 2020-09-18 15:54 Chri_K 阅读(188) 评论(0) 推荐(0) 编辑
noip2014d1t1(生活大爆炸版石头剪刀布)

摘要: #include<iostream>using namespace std;int n,a1,b1,xa,xb;int a[210],b[210];int mac[5][5]={{0,0,1,1,0},{1,0,0,1,0},{0,1,0,0,1},{0,0,1,0,1},{1,1,0,0,0}}; 阅读全文

posted @ 2020-09-18 11:56 Chri_K 阅读(102) 评论(0) 推荐(0) 编辑
noip2017d1t1(小凯的疑惑)

摘要: //同余方程 #include<iostream>#include<cstdio>using namespace std;int main(){ long long a,b,x; cin>>a>>b; x=a*b-a-b; cout<<x<<endl; return 0;} 阅读全文

posted @ 2020-09-18 09:50 Chri_K 阅读(112) 评论(0) 推荐(0) 编辑