C - Distinct or Not 解説 /

実行時間制限: 2 sec / メモリ制限: 1024 MB

配点 : 300

問題文

整数列 A_1, A_2, ..., A_N が与えられます。 この整数列のどの 2 つの要素も互いに異なるならば YES を、そうでないなら NO を出力してください。

制約

  • 2 ≤ N ≤ 200000
  • 1 ≤ A_i ≤ 10^9
  • 入力は全て整数

入力

入力は以下の形式で標準入力から与えられる。

N
A_1 ... A_N

出力

整数列のどの 2 つの要素も互いに異なるならば YES を、そうでないなら NO を出力せよ。


入力例 1

5
2 6 1 4 5

出力例 1

YES

どの 2 つの要素も互いに異なります。


入力例 2

6
4 1 3 1 6 2

出力例 2

NO

2 番目の要素と 4 番目の要素が同じです。


入力例 3

2
10000000 10000000

出力例 3

NO

Score : 300 points

Problem Statement

Given is a sequence of integers A_1, A_2, ..., A_N. If its elements are pairwise distinct, print YES; otherwise, print NO.

Constraints

  • 2 ≤ N ≤ 200000
  • 1 ≤ A_i ≤ 10^9
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

N
A_1 ... A_N

Output

If the elements of the sequence are pairwise distinct, print YES; otherwise, print NO.


Sample Input 1

5
2 6 1 4 5

Sample Output 1

YES

The elements are pairwise distinct.


Sample Input 2

6
4 1 3 1 6 2

Sample Output 2

NO

The second and fourth elements are identical.


Sample Input 3

2
10000000 10000000

Sample Output 3

NO