Cod sursa(job #2870374)

Utilizator pctirziuTirziu Petre pctirziu Data 12 martie 2022 12:01:31
Problema Invers modular Scor 100
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 0.51 kb
#include <fstream>

using namespace std;
ifstream cin("inversmodular.in");
ofstream cout("inversmodular.out");
void invers(long long &x, long long &y, int n, int mod)
{
    if(!mod)
        x = y = 1;
    else{
        invers(x, y, mod, n % mod);
        long long aux = x;
        x = y;
        y = aux - y * (n / mod);
    }
}
int main()
{
    int a, mod;
    cin >> a >> mod;
    long long x, y;
    invers(x, y, a, mod);
    while(x < 0)
        x += mod;
    cout << x;
    return 0;
}