Pagini recente » Cod sursa (job #399569) | Cod sursa (job #3198766) | Cod sursa (job #2688845) | Cod sursa (job #1208443) | Cod sursa (job #3270583)
#include <iostream>
#include <fstream>
using namespace std;
void EuclidExtins(int a, int b, int &d, int &x, int &y)
{
if(b == 0)
{
x = 1;
y = 0;
d = a;
}
else
{
int x0, y0;
EuclidExtins(b, a%b, d, x0, y0);
x = y0;
y = x0-(a/b)*y0;
}
}
int inversMOD(int a, int n)
{
int d, x, y;
EuclidExtins(a, n, d, x, y);
while(x < 0)
x += n;
return x;
}
int main()
{
int a, n;
ifstream fin("inversmodular.in");
ofstream fout("inversmodular.out");
fin >> a >> n;
fout << inversMOD(a, n);
return 0;
}