13 lines
305 B
Python
13 lines
305 B
Python
|
with open("input", "r") as input:
|
||
|
input = list(map(int, input.read().strip().split(",")))
|
||
|
fuel = []
|
||
|
|
||
|
for i in range(min(input), max(input)):
|
||
|
total_fuel = 0
|
||
|
for x in input:
|
||
|
total_fuel += abs(i - x)
|
||
|
fuel.append(total_fuel)
|
||
|
|
||
|
fuel.sort()
|
||
|
print(fuel[0])
|