Accepted
Code
#include<bits/stdc++.h>
using namespace std;
const long long M=3e5+10,MOD=1000000007;
typedef long long ll;
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
int t=1;
cin>>t;
while(t--){
ll a,b;
cin>>a>>b;
ll ans=0;
while(a>0 && b>0){
if(a==b){
ans++;
break;
}
if(a>=b)swap(a,b);
ans+=(b/a);
b-=(b/a)*a;
}
cout<<ans<<"\n";
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1029 Make it zero
- Contest
- Brain booster #2
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-03-06 13:08:45
- Judged At
- 2024-11-11 03:42:50
- Judged By
- Score
- 100
- Total Time
- 2ms
- Peak Memory
- 804.0 KiB