scripts/ege/Проверочная по 0/24.py
2023-05-05 00:45:01 +03:00

20 lines
336 B
Python
Vendored

with open("24.txt") as f:
data = f.read()
c = 0
mx = 0
for ex in range(1, 3):
for i in range(ex, len(data), 2):
el1 = data[i - 1]
el2 = data[i]
if el1 + el2 in ["AB", "CB"]:
c += 1
else:
if c > mx:
mx = c
c = 0
print(mx)