摘要: 1. const int maxn = 1e6+10; bool is_not_pri[maxn]; int dp[maxn], tol; void presolve(){ is_not_pri[1] = true; for(int i=2; i<maxn; i++){ if(is_not_pri[ 阅读全文
posted @ 2025-03-20 13:38 Devpp 阅读(11) 评论(0) 推荐(0)