Advertisement
AmidamaruZXC

TaskM

Apr 24th, 2021
741
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. #include <iostream>
  2. #include <set>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8.     int n, x;
  9.     cin >> n;
  10.     set<int> s;
  11.     for (int i = 0; i < n; i++)
  12.     {
  13.         cin >> x;
  14.         s.insert(x);
  15.     }
  16.     if (s.size() == n)
  17.         cout << "YES";
  18.     else
  19.         cout << "NO";
  20. }
  21.  
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement