Advertisement
Ankit_132

A

Oct 14th, 2023
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int x;
  8.     cin>>x;
  9.    
  10.     set<int> st;
  11.    
  12.     while(x--)
  13.     {
  14.         int a;
  15.         cin>>a;
  16.    
  17.         st.insert(a);
  18.     }
  19.    
  20.     if(st.size() == 1)      cout<<"Yes\n";
  21.     else                    cout<<"No\n";
  22. }
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement