#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;
const int N = 1e5+10;
int a[N];
int s[N]; //存放每个数出现的个数
int main()
{
int n;
cin>>n;
for (int i = 0; i < n; i ++ )
cin>>a[i];
int res=0;
for(int i=0,j=0;i<n;i++) //到i这个位置,j最左能到哪里,然后更新区间
{
s[a[i]]++;
while(s[a[i]]>1) //如果有重复一定是因为最后一个元素引起的,一直删到所有元素都不重复位置
{
s[a[j]]--;
j++;
}
res=max(res,i-j+1);
}
cout<<res;
return 0;
}