摘要: 线性求逆元 #include<bits/stdc++.h> #define ll long long using namespace std; ll n, p, inv[3000005]; int main(){ cin >> n >> p; inv[0] = inv[1] = 1; cout << 阅读全文
posted @ 2020-03-31 09:01 kojoker 阅读(137) 评论(0) 推荐(0)