Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
4286 | 未知用户 | 奇数及偶数和 | C++ | 解答错误 | 0 | 0 MS | 248 KB | 326 | 2020-01-03 20:00:11 |
#include<bits/stdc++.h> using namespace std; int zs(int x){ for(int i=2;i<=sqrt(x);i++){ bool y=x%i; if(!y){ return 1; } } return 0; } int main(){ int a,b=0,max1=0; cin>>a; for(int i=1;i<a;i++){ if(zs(i)){ b++; if(max1<b){ max1=b; } }else{ b=0; } } cout<<max1; }