Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
19612 陶俊宸 连续非素数的最长度 C++ 解答错误 0 0 MS 260 KB 297 2021-05-17 20:24:17

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*j<=n;j++) if(i%j==0) moda++; if(moda!=2) ctn++; else{ ans=max(ans,ctn); ctn=0; } } printf("%hd",ans); return 0; }


测评信息: