Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
19558 王循 连续非素数的最长度 C++ 解答错误 0 2 MS 1224 KB 369 2021-05-16 18:04:23

Tests(0/10):


#include <bits/stdc++.h> using namespace std; bool p[1000005]={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; 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; }


测评信息: