Cod sursa(job #3121565)
Utilizator | Data | 14 aprilie 2023 01:33:24 | |
---|---|---|---|
Problema | Invers modular | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva educationala | Marime | 0.45 kb |
#include <fstream>
using namespace std;
ifstream fin("inversmodular.in");
ofstream fout("inversmodular.out");
void extended_euclid(int a, int b, int &x, int &y) {
if(!b){
x = 1;
y = 0;
}else{
int x0, y0;
extended_euclid(b, a % b, x0, y0);
x = y0;
y = x0 - (a / b) * y0;
}
}
int main() {
int a, n, x, y;
fin >> a >> n;
extended_euclid(a, n, x, y);
while(x <= 0)
x += n;
fout << x << '\n';
fin.close();
fout.close();
return 0;
}