Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
19618 | 陶俊宸 | 连续非素数的最长度 | C++ | 运行超时 | 30 | 1000 MS | 252 KB | 341 | 2021-05-17 21:01:50 |
#include<bits/stdc++.h> using namespace std; int n; short moda,ctn,ans; int main(){ scanf("%d",&n); for(int i=1;i<=n;i++){ moda=0; for(int j=1;j<=i;j++){ if(i%j==0){ moda++; if(moda==3) break; } } if(moda!=2) ctn++; else{ ans=max(ans,ctn); ctn=0; } } printf("%hd",ans); return 0; }