Crazyharp

竖琴


  • Home
  • about
  •   

© 2025 Crazyharp

Theme Typography by Makito

Developed byCrazy_Harp

Proudly published with Hexo

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;
}
Share 

 Previous post: 卢卡斯定理 Next post: Young‘s Abis 

© 2025 Crazyharp

Theme Typography by Makito

Developed byCrazy_Harp

Proudly published with Hexo