mirror of
https://github.com/Alexander-D-Karpov/scripts.git
synced 2024-11-25 13:03:44 +03:00
15 lines
300 B
Python
15 lines
300 B
Python
|
with open("24.txt") as f:
|
||
|
data = f.read()
|
||
|
|
||
|
|
||
|
mx = 0
|
||
|
for i in range(len(data)):
|
||
|
for j in range(i + 1, len(data)):
|
||
|
s = data[i:j]
|
||
|
if s.count("D") <= 2:
|
||
|
if len(s) > mx:
|
||
|
mx = len(s)
|
||
|
print(mx)
|
||
|
else:
|
||
|
break
|