记录编号 125811 评测结果 AAAAAAAAAATT
题目名称 神秘的素数 最终得分 83
用户昵称 Gravatar奶猹 是否通过 未通过
代码语言 C++ 运行时间 6.491 s
提交时间 2014-10-10 08:09:06 内存使用 144.54 MiB
显示代码纯文本
#include<cstdio>
#include<cmath>
int n;
bool b[200000001];
int main()
{
	freopen("p_rime.in","r",stdin);
	freopen("p_rime.out","w",stdout);
	scanf("%d",&n);
	for(int i=2;i<=n;i++)
	{
		if(!b[i])
		{
			printf("%d\n",i);
			int tmp=i,tot=2;
			while(tmp*tot<=n)
			{
				b[tmp*tot]=1;
				tot++;
			}
		}
	}
	return 0; 
}