Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
19918 孙喻桐 连续非素数的最长度 C++ 通过 100 131 MS 252 KB 362 2021-05-25 21:26:13

Tests(10/10):


#include <bits/stdc++.h> using namespace std; int sushu(int n) { if(n==1) return 0; for(int i=2; i<=sqrt(n); i++) { if(n%i==0) { return 0; } } return 1; } int main() { int n,ma,s=0; cin>>n; ma=0; for(int i=1; i<=n; i++) { if(sushu(i)==0) { s++; ma = max(s,ma); } else { s = 0; } } cout<<ma; return 0; }


测评信息: