fork download
  1. #include <iostream>
  2. #include <string>
  3. #include <bits/stdc++.h>
  4.  
  5. using namespace std;
  6.  
  7. int LongestConsecutiveCharacter(const std::string& s) {
  8. // Write your logic here.
  9. // Parameters:
  10. // s (const std::string&): The passcode string consisting of lowercase alphabets
  11. // Returns:
  12. // int: Length of the longest part of the passcode that contains only one unique character
  13. int n = s.length();
  14. if (n==1) return 1;
  15. int maxi = INT_MIN;
  16. for (int i=0;i<n-1;i++) {
  17. int cnt = 1;
  18. while (s[i] == s[i+1]) {
  19. cnt++;
  20. if (cnt > maxi) {
  21. maxi = cnt;
  22. }
  23. i++;
  24. }
  25. }
  26. return maxi;
  27. }
  28.  
  29. int main() {
  30. std::string s;
  31. std::getline(std::cin, s);
  32.  
  33. // Call user logic function and print the output
  34. int result = LongestConsecutiveCharacter(s);
  35. std::cout << result << std::endl;
  36.  
  37. return 0;
  38. }
Success #stdin #stdout 0.01s 5288KB
stdin
p
stdout
1