Advertisement
Saleh127

CF gym10073G

Oct 30th, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 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. string a;
  11. ll c,i,j,k=0,l=0;
  12. cin>>a;
  13. for(i=0;i<a.size();i++)
  14. {
  15. if(a[i]=='1') k++;
  16. else l++;
  17. }
  18.  
  19. cout<<min(k,l)<<endl;
  20. return 0;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement