101552: [AtCoder]ABC155 C - Poll

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score: $300$ points

Problem Statement

We have $N$ voting papers. The $i$-th vote $(1 \leq i \leq N)$ has the string $S_i$ written on it.

Print all strings that are written on the most number of votes, in lexicographical order.

Constraints

  • $1 \leq N \leq 2 \times 10^5$
  • $S_i$ $(1 \leq i \leq N)$ are strings consisting of lowercase English letters.
  • The length of $S_i$ $(1 \leq i \leq N)$ is between $1$ and $10$ (inclusive).

Input

Input is given from Standard Input in the following format:

$N$
$S_1$
$:$
$S_N$

Output

Print all strings in question in lexicographical order.


Sample Input 1

7
beat
vet
beet
bed
vet
bet
beet

Sample Output 1

beet
vet

beet and vet are written on two sheets each, while beat, bed, and bet are written on one vote each. Thus, we should print the strings beet and vet.


Sample Input 2

8
buffalo
buffalo
buffalo
buffalo
buffalo
buffalo
buffalo
buffalo

Sample Output 2

buffalo

Sample Input 3

7
bass
bass
kick
kick
bass
kick
kick

Sample Output 3

kick

Sample Input 4

4
ushi
tapu
nichia
kun

Sample Output 4

kun
nichia
tapu
ushi

Input

题意翻译

我们有 $N$ 个投票文件。 第 $i$ 次投票 $(1 \leq i \leq N)$ 上面写有字符串 $S_i$。 按字典顺序打印以最高票数记录的所有字符串。

加入题单

算法标签: