1059 Prime Factors (25 point(s))

注:每次修改代碼一定要測試一遍。。。  #include<iostream> #include<cstdio> using namespace std; const int MAXN = 5e5; int book[MAXN]; int main() { for(int i = 2; i < MAXN; ++i) for(int j = 2 * i; j < MAXN; j += i) bo
相關文章
相關標籤/搜索