Cod sursa(job #2767508)

Utilizator cyg_dragos10Ivan Dragos cyg_dragos10 Data 6 august 2021 15:13:24
Problema Invers modular Scor 100
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 0.52 kb
#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)
         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;
    int a,n;
    fin>>a>>n;
    gcd(inv, ins, a, n);
    if (inv <= 0)
       inv = n + inv % n;
    fout<<inv;
    return 0;
}