Cod sursa(job #1902944)
| Utilizator | Data | 4 martie 2017 21:11:00 | |
|---|---|---|---|
| Problema | Invers modular | Scor | 50 |
| Compilator | cpp | Status | done |
| Runda | Arhiva educationala | Marime | 0.5 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream fin("inversmodular.in");
ofstream fout("inversmodular.out");
int a, n, d, x, y;
void euclid(int a, int b, int &d, int &x, int &y)
{
if(!b)
{
d=a;
x=1;
y=0;
}
else
{
int x0, y0;
euclid(b, a%b, d, x0, y0);
x=y0;
y=x0-a/b*y0;
}
}
int main()
{
fin>>a>>n;
euclid(a,n,d,x,y);
x=x%n;
fout<<x;
return 0;
}
