Josif_tepe

Untitled

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