Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
19616 陶俊宸 连续非素数的最长度 C++ 运行超时 30 1000 MS 256 KB 340 2021-05-17 20:53:10

Tests(3/10):


#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<n;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; }


测评信息: