ICPC Asia West Regional 2019 Problem J Greatest GCD Ever Solution

   ///La ilaha illellahu muhammadur rasulullah

///******Bismillahir-Rahmanir-Rahim******///

///Abul Hasnat  Tonmoy

///Department of CSE,23rd batch

    ///Islamic University,Bangladesh

    #include <bits/stdc++.h>

    using namespace std;

    int gcd(int a, int b)

    {

        if (b == 0)

            return a;

        return gcd(b, a % b);


    }

    int main()

    {

        int a,b,i,gc,mxg=0;

        cin>>a>>b;

        gc=gcd(a,b);

        for(i=0; i<=b; i++)

        {

            mxg=max(mxg,gcd(a,i));

        }

            cout<<mxg<<endl;

    }


    No comments

    Most View Post

    Recent post

    RESTful APIs with CRUD Operations in Laravel 12| (2025)

      RESTful APIs serve as the foundation of modern web development. They follow a set of rules called Representational State Transfer (REST) t...

    Powered by Blogger.