import sys a = "" b = "" a = input() b = input() dl = int(a) // 10 ile = 0 ileT = 0 punkty = 0 for i in b: ile += 1 if i == 'T': ileT += 1 if ile == dl: if ileT == dl: punkty += 1 ile = 0 ileT = 0 print(punkty)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | import sys a = "" b = "" a = input() b = input() dl = int(a) // 10 ile = 0 ileT = 0 punkty = 0 for i in b: ile += 1 if i == 'T': ileT += 1 if ile == dl: if ileT == dl: punkty += 1 ile = 0 ileT = 0 print(punkty) |