#31567: Python Regex解法


seer852741@gmail.com (St418)

學校 : 國立中央大學
編號 : 170226
來源 : [114.24.161.39]
最後登入時間 :
2024-01-05 19:57:56
c462. apcs 交錯字串 (Alternating Strings) -- apcs | From: [220.129.90.242] | 發表日期 : 2022-08-07 18:51

from re import findall

k = int(input())
text = input()

pattern = fr'(?=((?:[a-z]{{{k}}})?(?:[A-Z]{{{k}}}[a-z]{{{k}}})*(?:[A-Z]{{{k}}})?))'

result = findall(pattern, text)
print(max(map(len, result)))
 
 
ZeroJudge Forum