aboutsummaryrefslogtreecommitdiff
path: root/2025/01/a.py
blob: 114acb4a52ebb9fcfe4d5fc238708597be492571 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import fileinput

p = 50
c = 0
with fileinput.input() as lines:
	for line in lines:
		s = 1 if line[0] == "R" else -1
		p = (p + s * int(line[1:])) % 100
		if p == 0:
			c += 1

print(c)

Generated with cgit - Back to sebastiano.tronto.net