摘要: #include <bits/stdc++.h> using namespace std; const int maxn = 1e5 + 10; int phi[maxn]; void euler() { for (int i = 2; i < maxn; i++) { if (!phi[i]) { 阅读全文
posted @ 2019-09-02 07:51 Hazelxcf 阅读(116) 评论(0) 推荐(0) 编辑