记录编号 407656 评测结果 AAAAAAAAAA
题目名称 [HZOI 2016] 活动投票 最终得分 100
用户昵称 Gravatar11101001 是否通过 通过
代码语言 C++ 运行时间 1.917 s
提交时间 2017-05-22 16:47:14 内存使用 0.29 MiB
显示代码纯文本
#include<cstdio>

int n,pos;

int main()
{
	freopen("hztp.in","r",stdin);
	freopen("hztp.out","w",stdout);
	scanf("%d",&n);
	int lenth_max=-1;int lenth_now=0;int who;
	int a;
	scanf("%d",&a);
	
	for(int i=2;i<=n;i++)
	{
		scanf("%d",&pos);
		if(pos==a)
		{
			lenth_now++;
		}
		else 
		{
			if(lenth_now>lenth_max)
	        {
	        	lenth_max=lenth_now;
	        	who=a;
			}
			lenth_now=0;
		}
		a=pos;
	}
	printf("%d",who);
}