洛谷P1082同余方程

Posted Koreyoshi.

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了洛谷P1082同余方程相关的知识,希望对你有一定的参考价值。

#include<bits/stdc++.h>
using namespace std;

int exGcd(int a,int b,int &x,int &y) {
if(b==0) {
x=1;
y=0;
return a;
}
int r=exGcd(b,a%b,x,y);
int t=x;
x=y;
y=t-a/b*y;
return r;
}

int main() {
int a,b,i,j,k,m,n;
cin>>m>>n;
int gcd=exGcd(m,n,a,b);
cout<<(a%n+n)%n;
return 0;
}

以上是关于洛谷P1082同余方程的主要内容,如果未能解决你的问题,请参考以下文章

洛谷 P1082 同余方程

洛谷P1082 同余方程 数论

洛谷 P1082 同余方程 题解

洛谷P1082同余方程

洛谷 P1082 同余方程

[NOIP2012] 提高组 洛谷P1082 同余方程