Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
54970 | zhangsicun | 最长平台 | C++ | 运行超时 | 1000 MS | 232 KB | 363 | 2024-11-01 15:46:02 |
#include<bits/stdc++.h> using namespace std; int main(){ int n, max = -999, now; cin >> n; int a[n]; for(int i =0; i = n; i++){ cin >> a[i]; if(a[i] == a[i - 1]){ now = 1; }else{ now ++; } if(now >= max){ max = now; } } cout << max; return 0; }