Cod sursa(job #2428626)

Utilizator andrei42Oandrei42O andrei42O Data 5 iunie 2019 22:05:30
Problema Invers modular Scor 100
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 0.51 kb
#include <bits/stdc++.h>
#define ll long long
using namespace std;
ifstream f("inversmodular.in");
ofstream g("inversmodular.out");
int A, N;
void gcd(ll &x, ll &y, int a, int b)
{
     if (!b)
         x = 1, y = 0;
     else
     {
         gcd(x, y, b, a % b);
         ll aux = x;
         x = y;
         y = aux - y * (a / b);
     }
}

int main()
{
    ll inv = 0, ins;
    f >> A >> N;
    gcd(inv, ins, A, N);
    if (inv <= 0)
       inv = N + inv % N;
    g << inv;

    return 0;
}