摘要:
#include<iostream> using namespace std; const int N=110; int f[N][N],g[N][N]; int main(){ int n,m; cin>>n>>m; for(int i=0;i<n;i++) for(int j=0;j<m;j++ 阅读全文
posted @ 2020-10-11 17:41
进化の程序猿
阅读(96)
评论(0)
推荐(0)
摘要:
#include<iostream> using namespace std; int main(){ int a=2019,b=324; int res=0; while(a!=b){ if(a-b>b){ a-=b; res++; }else{ int t=a; a=b; b=t-b; res+ 阅读全文
posted @ 2020-10-11 17:13
进化の程序猿
阅读(211)
评论(0)
推荐(0)