Cod sursa(job #2673694)

Utilizator JaguarKatStere Teodor Ioanin JaguarKat Data 17 noiembrie 2020 16:00:53
Problema Invers modular Scor 0
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 0.49 kb
#include <bits/stdc++.h>

using namespace std;

ifstream fin("inversmodular.in");
ofstream fout("inversmodular.out");

void cmmdc(int a, int b, long long &x, long long &y)
{
    if(b == 0)
    {
        x = 1;
        y = 0;
    }
    else
    {
        int x0,y0;
        cmmdc(b, a % b, x0, y0);
        x = y0;
        y = x0 - a / b * y0;
    }
}

int main()
{
    int a,n;
    long long x,y;
    fin >> a >> n;
    cmmdc(a,n,x,y);
    fout << x;
    return 0;
}