Cod sursa(job #2553545)

Utilizator bogosanuAndrei Bogos bogosanu Data 22 februarie 2020 09:34:39
Problema Invers modular Scor 100
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 0.42 kb
#include <bits/stdc++.h>
using namespace std;
ifstream fin("inversmodular.in");
ofstream fout("inversmodular.out");
//inversmodular
void Euclid(int a, int b, int &d, int &x, int &y)
{if(b==0)
   {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()
{int A,N,d,x,y;
 fin>>A>>N;
 Euclid(A,N,d,x,y);
 if(x<0) x+=N;
 fout<<x;


    return 0;
}