Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
40235 奚晨瑞 最长平台 C++ 通过 0 MS 252 KB 287 2024-02-08 14:30:04

Tests(1/1):


#include<iostream> using namespace std; int a[1000]; int main() { int x,temp; x=0; temp=1; int n; cin>>n; for(int i=0;i<n;i++){ cin>>a[i]; if(a[i]==a[i-1]){ temp++; } else{ if(temp>x){ x=temp; temp=1; } } } cout<<x; return 0; }


测评信息: