You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
289 B
Python
15 lines
289 B
Python
3 years ago
|
with open("input") as f:
|
||
|
puzzle_input = [n.strip() for n in f.readlines()]
|
||
|
|
||
|
ribbon = 0
|
||
|
|
||
|
for present_dim in puzzle_input:
|
||
|
parsed_dim = [int(x) for x in present_dim.split("x")]
|
||
|
parsed_dim.sort()
|
||
|
|
||
|
[l, w, h] = parsed_dim
|
||
|
|
||
|
ribbon += 2 * l + 2 * w + l * w * h
|
||
|
|
||
|
print(ribbon)
|