Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
19561 | 王循 | 连续非素数的最长度 | C++ | 通过 | 100 | 3 MS | 1232 KB | 371 | 2021-05-16 18:06:26 |
#include <bits/stdc++.h> using namespace std; bool p[2000000]={1,1}; int n; void init() { for(int i=2;i*i<=1000000;i++) { if(!p[i]) { for(int j=i*i;j<=1000000;j+=i)p[j]=1; } } } int main() { cin>>n; init(); int maxn=0,s=0; for(int i=1;i<=n;i++) { if(p[i])s++; else maxn=max(maxn,s),s=0; } maxn=max(maxn,s); cout<<maxn<<endl; }