摘要: 预处理出前4位的超级素数,再枚举后四位View Code 1 /* 2 ID: your_id_here 3 PROG: sprime 4 LANG: C++ 5 */ 6 #include <iostream> 7 #include<cstdio> 8 #include<cstring> 9 #include<cmath>10 #include<algorithm>11 using namespace std;12 int num[10][1000],f[20],g,n,k[10],nn[10000],kk;13 int prime 阅读全文
posted @ 2012-11-16 21:24 _雨 阅读(165) 评论(0) 推荐(0) 编辑