You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
482 B
19 lines
482 B
positions = [int(i) for i in open("input.txt", 'r').read().split(",")]
|
|
|
|
width = max(positions)
|
|
part = input("a or b? ")
|
|
bestFuel = len(positions)*width if part == "a" else len(positions)* int(((width ** 2 + width) / 2))
|
|
bestPos = 0
|
|
|
|
for i in range(bestFuel):
|
|
fuelUsed = 0
|
|
for pos in positions:
|
|
mov = abs(i - pos)
|
|
fuelUsed += mov if part == "a" else int(((mov ** 2 + mov) / 2))
|
|
if fuelUsed > bestFuel:
|
|
break
|
|
bestFuel = fuelUsed
|
|
bestPos = i
|
|
|
|
print(bestFuel)
|
|
print(bestPos)
|
|
|