Cod sursa(job #2429744)

Utilizator rd211Dinucu David rd211 Data 11 iunie 2019 00:06:31
Problema Invers modular Scor 100
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 0.5 kb
#include <iostream>
#include <fstream>
using namespace std;
ifstream fin("inversmodular.in");
ofstream fout("inversmodular.out");
void gcd(long long &x,long long &y,int a,int b)
{
    if(b==0)
    {
        x = 1;
        y = 0;
    }
    else
    {
        gcd(x,y,b,a%b);
        int aux = x;
        x = y;
        y = aux - (a/b)*y;
    }
}
int main()
{
    long long x,y;
    int a,n;
    fin>>a>>n;
    gcd(x,y,a,n);
    if(x<=0)
        x = n + x%n;
    fout<<x;
    return 0;
}