方法一:拓展欧几里得算法 模板题 需要满足gcd(a,b)能整除n就行 #include <bits/stdc++.h> using namespace std; const int maxn = 1e5 + 10; typedef long long ll; ll exgcd(ll a, ll b, ll &x, ll &y)//求一个特解 { if (b == 0) { x = 1, y = 0; return a; } ll d = exgcd(b, a % b, y, x); y -= ...