You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <cstdio>
|
|
int n, x, t, tot;
|
|
int main()
|
|
{
|
|
scanf("%d", &n);
|
|
while (n--)
|
|
{
|
|
scanf("%d", &x);
|
|
if (tot == 0) {
|
|
t = x;
|
|
tot = 1;
|
|
}
|
|
else if (t == x)
|
|
tot++;
|
|
else
|
|
tot--;
|
|
}
|
|
printf("%d", t);
|
|
return 0;
|
|
} |