Cod sursa(job #2725404)

Utilizator florinrafiliuRafiliu Florin florinrafiliu Data 18 martie 2021 21:14:24
Problema Invers modular Scor 50
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 0.49 kb
#include <iostream>
#include <fstream>

using namespace std;

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

void euclid(long long  a, long long b, long long &x, long long &y) {
    if(b == 0)
        x = y = 1;
    else {
        long long x1, y1;
        euclid(b, a % b, x1, y1);
        x = y1;
        y = x1 - (a/b) * y1;
    }
}

int main() {
    long long a, n; fin >> a >> n;
    long long x, y;
    euclid(a, n, x, y);
    fout << x;

}