跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F1330. Voting for Photos

    ID: 1336 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 1 上传者: 标签>构造模拟算法思想编程与模拟入门难度共享题库Codeforces英文题面题目来源题面语言

Voting for Photos

题目描述

A. Voting for Photos
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

After celebrating the midcourse the students of one of the faculties of the Berland State University decided to conduct a vote for the best photo. They published the photos in the social network and agreed on the rules to choose a winner: the photo which gets most likes wins. If multiple photoes get most likes, the winner is the photo that gets this number first.

Help guys determine the winner photo by the records of likes.

Input

The first line of the input contains a single integer n (1≤n≤1000) − the total likes to the published photoes.

The second line contains n positive integers a1,a2,...,an (1≤ai≤1000000), where ai is the identifier of the photo which got the i-th like.

Output

Print the identifier of the photo which won the elections.

Examples
Input
5
1 3 2 2 1
Output
2
Input
9
100 200 300 200 100 300 300 100 200
Output
300
Note

In the first test sample the photo with id 1 got two likes (first and fifth), photo with id 2 got two likes (third and fourth), and photo with id 3 got one like (second).

Thus, the winner is the photo with identifier 2, as it got:

  • more likes than the photo with id 3;
  • as many likes as the photo with id 1, but the photo with the identifier 2 got its second like earlier.


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 828 题。保留原作者与原赛事署名。