Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
19906 | 桑迪 | 连续非素数的最长度 | C++ | 通过 | 100 | 238 MS | 256 KB | 302 | 2021-05-25 20:09:04 |
#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; }