fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. ios_base::sync_with_stdio(false);
  7. cin.tie(0);
  8.  
  9. int t;
  10. cin >> t;
  11.  
  12. string s;
  13. cin >> s;
  14.  
  15. int ctr = 0;
  16.  
  17. for (int i = 1; i < t; i++)
  18. {
  19. if (s[i] == s[i - 1])
  20. {
  21. ctr++;
  22. }
  23. }
  24. cout << ctr;
  25. }
Success #stdin #stdout 0.01s 5252KB
stdin
5
RRRRR
stdout
4