多学习。

摘要: AcWing876.快速幂求逆元 题解 #include <iostream> using namespace std; typedef long long LL; int gcd(int a, int b) { return b == 0 ? a : gcd(b, a % b); } int qm 阅读全文
posted @ 2022-06-09 21:36 czyaaa 阅读(51) 评论(0) 推荐(0)
摘要: ![](https://img2022.cnblogs.com/blog/2425439/202206/2425439-20220609213156081-39622933.jpg) 阅读全文
posted @ 2022-06-09 21:32 czyaaa 阅读(82) 评论(0) 推荐(0)
摘要: AcWing875.快速幂 题解 #include <iostream> using namespace std; typedef long long LL; int main() { int n, a, b, p; cin >> n; while(n -- ) { int res = 1; cin 阅读全文
posted @ 2022-06-09 21:30 czyaaa 阅读(35) 评论(0) 推荐(0)