Bézout's identity
(Mylib/Number/bezout_identity.cpp)
Operations
$ax + by = c$の形の一次不定方程式を解く。
$c \neq 0 \pmod {gcd(a, b)}$のとき、整数解x, yは存在しない。
そうでなければ、整数解ペアx, yのうちxが最小の非負整数となるものを設定した生成器を返す。
Requirements
Notes
Problems
References
Depends on
Code
Back to top page