fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6. string S;
  7. cin>>S;
  8.  
  9. int count1=1;
  10. int maxCount=1;
  11. for(int i=0;i<S.length()-1;i++)
  12. {
  13. if(S[i] == S[i+1])
  14. {
  15. count1++;
  16. if(maxCount < count1)
  17. {
  18. maxCount=count1;
  19. }
  20. }
  21. else
  22. {
  23. count1=1;
  24. }
  25. }
  26.  
  27. cout<<maxCount<<endl;
  28.  
  29. return 0;
  30. }
Success #stdin #stdout 0.01s 5284KB
stdin
ATTCGGGA
stdout
3