记录编号 |
272808 |
评测结果 |
EEEEEEEEEE |
题目名称 |
[HZOI 2016] 活动投票 |
最终得分 |
0 |
用户昵称 |
Hzoi_ |
是否通过 |
未通过 |
代码语言 |
C++ |
运行时间 |
0.000 s |
提交时间 |
2016-06-18 07:48:51 |
内存使用 |
0.00 MiB |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
namespace mine{
int __c,__x,__a[110],__i,__j;
bool __neg;
inline int getint(){
__x=__neg=0;
do __c=getchar();while(__c==' '||__c=='\n'||__c=='\r'||__c=='\t');
if(__c=='-'){
__neg=true;
__c=getchar();
}
for(;__c>='0'&&__c<='9';__c=getchar())__x=(__x<<1)+(__x<<3)+(__c^48);
if(__neg)return -__x;
return __x;
}
inline void putint(int __x){
__neg=__x<0;
if(__neg)__x=-__x;
__i=0;
do{
__a[__i++]=__x%10+48;
__x/=10;
}while(__x);
if(__neg)putchar('-');
for(__j=__i-1;__j>=0;__j--)putchar(__a[__j]);
}
}
using namespace mine;
int n,num,rep=0,ans=0,i;
int MAIN();
void* six=(freopen("hztp.in","r",stdin),freopen("hztp.out","w",stdout));
int haha=MAIN();
int main(){;}
inline int MAIN(){
n=getint();
for(i=0;i<n;i++){
num=getint();
if(!rep)ans=num;
if(ans==num)rep++;
else rep--;
}
putint(ans);
return 0;
}