Mai intai trebuie sa te autentifici.

Cod sursa(job #2356979)

Utilizator alex.carpCarp Alexandru alex.carp Data 27 februarie 2019 01:31:48
Problema Invers modular Scor 100
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 0.44 kb
#include <fstream>

using namespace std;
ifstream f("inversmodular.in");
ofstream g("inversmodular.out");
long long x,y,a,n;
void euclid(long long &x,long long &y,int a,int b)
{
    if(!b)
    {
        x=1;
        y=0;
    }
    else
    {
        euclid(x,y,b,a%b);
        long long aux=x;
        x=y;
        y=aux-y*(a/b);
    }
}
int main()
{f>>a>>n;
euclid(x,y,a,n);
if(x<=0)
    x=n+x%n;
g<<x;

    return 0;
}