Submission #473830

#TimeUsernameProblemLanguageResultExecution timeMemory
473830Ahmed_SolymanEuklid (COCI20_euklid)C++14
4 / 110
1 ms256 KiB
#include <bits/stdc++.h>

using namespace std;

typedef long long ll;

ll R(ll a,ll b){
    if(a<b)return R(b,a);
    if(a>=b>1)return R(a/b,b);
    if(a>=b==1)return a;
}
int main()
{
    ll t;cin>>t;
    while(t--){
        ll g,h;cin>>g>>h;
        cout<<__gcd(g,h)<<" "<<R(g,h)<<endl;
    }
    return 0;
}

Compilation message (stderr)

euklid.cpp: In function 'll R(ll, ll)':
euklid.cpp:9:12: warning: comparison of constant '1' with boolean expression is always false [-Wbool-compare]
    9 |     if(a>=b>1)return R(a/b,b);
      |        ~~~~^~
euklid.cpp:9:9: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses]
    9 |     if(a>=b>1)return R(a/b,b);
      |        ~^~~
euklid.cpp:10:9: warning: suggest parentheses around comparison in operand of '==' [-Wparentheses]
   10 |     if(a>=b==1)return a;
      |        ~^~~
euklid.cpp:11:1: warning: control reaches end of non-void function [-Wreturn-type]
   11 | }
      | ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...