GCD与exGCD
Posted at 2024-11-15 ACM
本文共25字,阅读需要约1分钟
#inlcude<cstdio> int gcd(int a,int b){ return b?gcd(b,a%b):a; } int main(){ return 0; }
Previous post: 卢卡斯定理 Next post: Young‘s Abis