Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
19905 桑迪 连续非素数的最长度 C++ 解答错误 10 0 MS 256 KB 313 2021-05-25 20:07:44

Tests(1/10):


#include<bits/stdc++.h> using namespace std; int n,maxp,nowp; bool prime(int a){ for(int i=2;i*i<=a;i++) if(a%i==0) return 0; return 1; } int main(){ cin>>n; for(int i=1;i<=n;i++){ if(!prime(i)){ if(nowp>maxp) maxp=nowp,cout<<1; nowp=0; }else nowp++; } cout<<maxp; return 0; }


测评信息: