mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 13:18:47 +00:00
33 lines
430 B
C++
33 lines
430 B
C++
|
#include <iostream>
|
||
|
|
||
|
using std::cin;
|
||
|
using std::cout;
|
||
|
const char endl = '\n';
|
||
|
|
||
|
int a, b, x, y;
|
||
|
|
||
|
int exgcd(int a, int b, int &x, int &y) {
|
||
|
if (!b) {
|
||
|
x = 1;
|
||
|
y = 0;
|
||
|
return a;
|
||
|
}
|
||
|
|
||
|
int g = exgcd(b, a % b, y, x);
|
||
|
y -= a / b * x;
|
||
|
|
||
|
return g;
|
||
|
}
|
||
|
|
||
|
int main() {
|
||
|
std::ios::sync_with_stdio(false);
|
||
|
|
||
|
cin >> a >> b;
|
||
|
|
||
|
exgcd(a, b, x, y);
|
||
|
|
||
|
cout << (x % b + b) % b << endl;
|
||
|
|
||
|
return 0;
|
||
|
}
|