#include<bits/stdc++.h>
#include<algorithm>
#include<iostream>
#include<stdio.h>
using namespace std;
const int N=1e9;
int main()
{
int n;
cin>>n;
int cnt=1;
int maxx=0;
int d;
cin>>d;
int j;
for(int i=2; i<=n; i++)
{
cin>>j;
if(j==d+1)
{
cnt++;
}
else
{
cnt=1;
}
if(cnt>maxx) maxx=cnt;
d=j;
}
cout<<maxx<<endl;
return 0;
}
相关文章
- 04-09P1420 最长连号
- 04-09拓扑求有向图最长路或最短路
- 04-09Leetcode-5214 Longest Arithmetic Subsequence of Given Difference(最长定差子序列)
- 04-09luoguP4551最长异或路径
- 04-09NC41 最长无重复子数组
- 04-09最长的有效括号
- 04-09AcWing夏季每日一题--最长公共子序列
- 04-09leetcode3 无重复字符的最长子串
- 04-09QA:无重复字符的最长子串
- 04-09最长上升子序列