摘要: 蓝桥杯算法模板 2024/4/5:happy:🐉🐲 📓by Michael Zhao 🌉必胜 快速幂 typedef long long LL LL qmi(LL a,LL n,LL q){ LL res=1%q; while(n){ if(n&1) res=res*a%q; a=a*a%q 阅读全文
posted @ 2024-04-05 16:48 哈姆集团 阅读(76) 评论(0) 推荐(0)