Cod sursa(job #2139337)
Utilizator | Data | 22 februarie 2018 13:52:22 | |
---|---|---|---|
Problema | Invers modular | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva educationala | Marime | 0.48 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("inversmodular.in");
ofstream g("inversmodular.out");
int a,n;
void gcd(long long &x,long long &y,int a,int b)
{
if(!b)
x=1,y=0;
else
{
gcd(x,y,b,a%b);
long long aux=x;
x=y;
y=aux-y*(a/b);
}
}
int main()
{
long long inv=0,ins;
f>>a>>n;
gcd(inv,ins,a,n);
if(inv<=0)
inv=n+inv%n;
g<<inv;
return 0;
}