日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 人文社科 > 生活经验 >内容正文

生活经验

Educational Codeforces Round 39 B Weird Subtraction Process

發(fā)布時(shí)間:2023/11/27 生活经验 35 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Educational Codeforces Round 39 B Weird Subtraction Process 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

傳送門

模擬,寫的比較土,別吐槽

#include <bits/stdc++.h>
using namespace std;
typedef long long ll ;
typedef double    dl ;
#define INF 0x7fconst int  inf = 987654321;
const int sz = 1e6 + 5;
const int mod = 1e9 + 7;
const int sqrtn = 300;#define f(i,l,r) for(int i=l;i<=r;++i)
#define g(i,l,r) for(int i=l;i>=r;--i)
#define CLR(arr,val) memset(arr,val,sizeof(arr))
#define sz(a)   strlen(a)
#define FAST_IO ios::sync_with_stdio(false);cin.tie(0);#define lowbit(x) x&(-x)
#define X first
#define Y second #define pb push_back
#define pii pair<int,int>int dir[8][2]={{1,0},{-1,0},{0,1},{0,-1},{1,1},{1,-1},{-1,1},{-1,-1}};
ll a,b;void work()
{cin>>a>>b;while(1){if(a==0||b==0){break;}else{if(a>=2*b){a=a-a/(2*b)*(2*b);continue;}else{if(b>=2*a){b=b-b/(2*a)*(2*a);continue;}else{break;}}}}   cout<<a<<" "<<b<<endl; 
}int main()
{FAST_IO ;freopen("in","r",stdin);freopen("out","w",stdout);work();return 0; 
}

?

轉(zhuǎn)載于:https://www.cnblogs.com/corx/p/8523835.html

總結(jié)

以上是生活随笔為你收集整理的Educational Codeforces Round 39 B Weird Subtraction Process的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。