记录编号 |
461594 |
评测结果 |
AAAA |
题目名称 |
[SYZOJ] 鬼畜の素数 |
最终得分 |
100 |
用户昵称 |
Shirry |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.983 s |
提交时间 |
2017-10-20 09:11:44 |
内存使用 |
88.91 MiB |
显示代码纯文本
#include<cstdio>
#include<algorithm>
using namespace std;
const int maxn=1e8+10;
const int maxx=6e6+10;
int n,pri[maxx],tot;
bool mark[maxn];
unsigned long long ans;
inline void GetPrime(){
for(int i=2;i<=n;i++){
if(!mark[i])pri[++tot]=i,mark[i]=1;
for(int j=1;j<=tot;j++){
if(i*pri[j]>n)break;
mark[i*pri[j]]=1;
if(i%pri[j]==0)break;
}
}
}
int main(){
freopen("ghostprime.in","r",stdin);
freopen("ghostprime.out","w",stdout);
scanf("%d",&n);
GetPrime();
for(int i=1;i<=tot;i++)ans+=pri[i];
printf("%llu",ans);
return 0;
}