Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
54956 | zhangweiran | 最长平台 | C++ | 通过 | 1 MS | 248 KB | 287 | 2024-11-01 15:31:39 |
#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; }