Cod sursa(job #2985832)

Utilizator Ciorba21Tuduce Sergiu Ciorba21 Data 27 februarie 2023 10:28:09
Problema Invers modular Scor 100
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 0.52 kb
#include <bits/stdc++.h>
using namespace std;
ifstream fin("inversmodular.in");
ofstream fout("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;

    fin >> a >> n;
    gcd(inv, ins, a, n);

    if(inv <= 0)
        inv = inv % n + n;

    fout << inv;

    return 0;
}