s = input().strip()#读取输入字符串 def getmaxL(s): maxL = 0 for i in range(len(s) - 1, -1, -1):#采用双指针法,第一个指针从字符串尾部开始遍历 if s[i] >= 'a'...