Advertisement
Saleh127

CF 1419C

Sep 20th, 2020
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. #define ll long long
  4. #define test int t; cin>>t; for(int cs=1;cs<=t;cs++)
  5. int main()
  6. {
  7. ios_base::sync_with_stdio(0);
  8. cin.tie(0);cout.tie(0);
  9.  
  10. test
  11. {
  12. ll n,x,a,c=0,d=0,e,i,j,k,l;
  13. cin>>n>>x;
  14. for(i=0;i<n;i++)
  15. {
  16. cin>>a;
  17. if(a==x) c++;
  18. d+=(a-x);
  19. }
  20. if(c==n) cout<<0<<endl;
  21. else if(c) cout<<1<<endl;
  22. else if(d==0) cout<<1<<endl;
  23. else cout<<2<<endl;
  24. }
  25.  
  26.  
  27. return 0;
  28. }
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement