Cod sursa(job #2578990)
Utilizator | Data | 11 martie 2020 20:18:26 | |
---|---|---|---|
Problema | Invers modular | Scor | 50 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva educationala | Marime | 0.45 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("inversmodular.in");
ofstream g("inversmodular.out");
void Euclid(int a,int b,int& x,int& y)
{
if(b==0)
{
x=1;
y=0;
}
else
{
int x0,y0;
Euclid(b,a%b,x0,y0);
x=y0;
y=x0-a/b*y0;
}
}
int main()
{
int a,b,d,x,y;
f>>a>>b;
f.close();
Euclid(a,b,x,y);
g<<x;
return 0;
}