摘要: const int N = 1e5 + 10; int primes[N], cnt; bool st[N]; void get_primes(int n) { for(int i = 2; i <= n; i++) { if(!st[i]) primes[++cnt] = i; for(int j 阅读全文
posted @ 2022-10-06 14:18 Luli& 阅读(35) 评论(0) 推荐(0) 编辑