Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
47435 | 石利伟 | 连续非素数的最长度 | C++ | 解答错误 | 0 | 0 MS | 248 KB | 354 | 2022-07-14 20:21:55 |
#include<bits/stdc++.h> using namespace std; int n,ans=0,temp=0,i1=0; bool sushu(int num){ for(int i=2;i<=sqrt(num);i++){ if(num%i==0)return false; } return true; } int main(){ cin>>n; for(int i=1;i<=n;i++){ if(i1+1==i&&sushu(i)==true){ temp++; i1=i; } else temp=0; ans=max(ans,temp); } cout<<ans; return 0; }