Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
19904 | 桑迪 | 连续非素数的最长度 | C++ | 解答错误 | 0 | 0 MS | 248 KB | 303 | 2021-05-25 20:05:30 |
#include<bits/stdc++.h> using namespace std; int n,maxp,nowp; bool prime(int a){ for(int i=2;i*i<=a;i++) if(a%i==0) return 0; return 1; } int main(){ cin>>n; for(int i=1;i<=n;i++){ if(!prime(i)){ if(nowp>maxp) maxp=nowp; nowp=0; }else nowp++; } cout<<maxp; return 0; }