blob: 1391b06bd9b9d7a8f636875f744ea7d2bc67eb79 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
L = [" ".join(l.split()) for l in open("input").readlines()]
def solve():
p1 = 0
p2 = [1] * len(L)
for i, l in enumerate(L):
card, nums = l.split(": ")
winning, have = [
list(map(int, a.split(" "))) for a in nums.split(" | ")
]
s = sum(1 for x in have if x in winning)
for j in range(i + 1, i + s + 1):
p2[j] += p2[i]
p1 += 0 if s == 0 else 2 ** (s - 1)
print(p1, sum(p2))
solve()
|