Cod sursa(job #2497310)

Utilizator RazvanucuPopan Razvan Calin Razvanucu Data 22 noiembrie 2019 13:26:40
Problema Invers modular Scor 100
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 0.49 kb
#include <bits/stdc++.h>
using namespace std;
ifstream f("inversmodular.in");
ofstream g("inversmodular.out");
int A,N;
void gcd(long long &x,long long &y,int a,int b)
{
    if(!b)
    {
        x=1;
        y=0;
    }
    else
    {
        gcd(x,y,b,a%b);
        long long aux=x;
        x=y;
        y=aux-y*(a/b);
    }
}
int main()
{
    long long inv=0,ins;
    f>>A>>N;
    gcd(inv,ins,A,N);
    if(inv<0)
        inv=N+inv%N;

    g<<inv;
        return 0;
}