Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
20142 | 杨晓铮 | 连续非素数的最长度 | C++ | Accepted | 100 | 27 MS | 4156 KB | 406 | 2021-06-02 16:11:46 |
#include<bits/stdc++.h> using namespace std; int n,s[1000010],ans=0,fu; int main(){ cin>>n; memset(s,false,sizeof(s)); s[1]=1; for(int i=2;i*i<=n;i++){ if(s[i]==0){ for(int j=i*i;j<=n;j+=i){ s[j]=1; } } } for(int i=1;i<=n;i++){ // cout<<i<<" "<<s[i]<<endl; if(s[i]==1)fu++; else{ ans=max(ans,fu); fu=0; } } ans=max(ans,fu); cout<<ans; }