day 2 part 2

main
magical 2023-12-03 05:01:39 +00:00
parent 70a7f578cb
commit 771e4ec0c4
1 changed files with 13 additions and 0 deletions

View File

@ -1,12 +1,19 @@
import sys
def product(items):
t = 1
for x in items:
t *= x
return t
input = sys.stdin
total = 0
power = 0
game_num = 0
for line in input:
game, _, data = line.partition(": ")
game_num += 1
takes = data.split(";")
possible = True
minset = {'green':0, 'blue':0, 'red':0}
for t in takes:
cubes = t.split(",")
cubes = [x.split() for x in t.split(",")]
@ -15,7 +22,13 @@ for line in input:
cubes.get('green', 0) <= 13 and \
cubes.get('blue', 0) <= 14 and \
cubes.get("red", 0) <= 12
for color, n in cubes.items():
minset[color] = max(minset[color], n)
if possible:
total += game_num
power += product(minset.values())
print(total)
print(power)