Cod sursa(job #3171315)

Utilizator andreifilimonPopescu Filimon Andrei Cosmin andreifilimon Data 18 noiembrie 2023 18:15:27
Problema Invers modular Scor 100
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 0.52 kb
#include <fstream>

using namespace std;
ifstream cin("inversmodular.in");
ofstream cout("inversmodular.out");

void euclid_extins(long long a, long long b, long long &x, long long &y)
{
    if(b==0)
    {
        x=1;
        y=0;
    }
    else
    {
        long long x1, y1;
        euclid_extins(b, a%b, x1, y1);
        x=y1;
        y=x1-(a/b)*y1;
    }
}

int main()
{
    long long a, b;
    cin>>a>>b;
    
    long long x, y;
    euclid_extins(a, b, x, y);
    
    while(x<0)
        x+=b;
    
    cout<<x;
    return 0;
}