Cod sursa(job #3039722)

Utilizator TomaaBrihacescu Toma Tomaa Data 28 martie 2023 20:00:10
Problema Invers modular Scor 0
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 0.48 kb
#include <bits/stdc++.h>

using namespace std;

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

int main()
{
    ifstream fin ("inversmodular.in");
    ofstream fout ("inversmodular.out");
    int a, n;
    fin >> a >> n;
    int x, y;
    euclid(a, n, x, y);
    fout<<x;

    return 0;
}