不行今天我一定要写一篇数论 来证明我真的学过数论(因为可能明天就不会了)
ax=1(mod b)
存在y ax=by+1;成立;
ax+by=1;
又扩展欧几里得推出if(a,b) | 1 使之成立
然后我们就在求 (a,b) 的同时 把 x,y 求出来 再扩展 b/gcd(a,b)倍
再用 ans=(ans%m+m)%m 搞成最小正整数
over!
#include <bits/stdc++.h>
using namespace std;
const int N = 2e4+10;
const int M = 1e4+10;
const int mod = 1e9+7;
#define int long long
#define endl '\n'
#define Endl '\n'
#define inf 0x3f3f3f3f3f3f3f3f
#define fast ios::sync_with_stdio(false);cin.tie(nullptr);cout.tie(nullptr);
int exgcd(int a,int b,int &x,int &y){
if(!b){x=1,y=1;return a;}
else {int d=exgcd(b,a%b,y,x);y-=a/b*x;return d;}
}
signed main(){
fast
int a,m;cin>>a>>m;
int b=1;
int x,y;
int d=exgcd(a,m,x,y);
int ans=x*b/d%m;
if(ans>0){
while(ans>0){
ans=(ans%m-m)%m;
}
ans+=m;
}else{
while(ans<0){
ans=(ans%m+m)%m;
}
}
cout<<ans<<endl;
return 0^0;
}