Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
19701 | 郑奚桐 | 连续非素数的最长度 | C++ | 通过 | 100 | 112 MS | 248 KB | 337 | 2021-05-20 20:46:16 |
#include <bits/stdc++.h> using namespace std; int jkl(int n) { if(n==1) return 0; for(int i=2; i<=sqrt(n); i++) { if(n%i==0) { return 0; } } return 1; } int n,m,s; int main(){ cin>>n; m=0; for(int i=1;i<=n;i++){ if(jkl(i)==0){ s++; m=max(s,m); }else{ s=0; } } cout<<m; return 0; }