#A. C - Distinct or Not

    传统题 1000ms 256MiB

C - Distinct or Not

该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。

C - Distinct or Not

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:

NN

A1A_1 ...... ANA_N

Output

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


5
2 6 1 4 5
YES

The elements are pairwise distinct.


6
4 1 3 1 6 2
NO

The second and fourth elements are identical.


2
10000000 10000000
NO

2024暑假入门组刷题营第三期(五)

未参加
状态
已结束
规则
IOI
题目
8
开始于
2024-7-12 13:00
结束于
2024-7-12 15:00
持续时间
2 小时
主持人
参赛人数
9