Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
19613 陶俊宸 连续非素数的最长度 C++ 输出超限 0 1 MS 248 KB 326 2021-05-17 20:28:56

Tests(0/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!=2){ printf("%d ",i); ctn++; } else{ ans=max(ans,ctn); ctn=0; } } printf("%hd",ans); return 0; }


测评信息: