摘要: ### exgcd ``` __int128 exgcd(__int128 as,__int128 bs,__int128 &x,__int128 &y){ if(bs==0){ x=1; y=0; return as; } __int128 ans=exgcd(bs,as%bs,y,x); y-= 阅读全文
posted @ 2023-07-18 20:42 muzqingt 阅读(16) 评论(0) 推荐(0) 编辑