처음에는 최대 - 최소 이렇게 생각했는데 틀렸다... 순열을 이용해서 모든 경우를 다 계산해야한다.
from itertools import permutations
N = int(input())
a = sorted(list(map(int, input().split())))
case = list(permutations(a))
ans = 0
for i in case:
tmp = 0
for j in range(N - 1):
tmp += abs(i[j] - i[j + 1])
ans = max(tmp, ans)
print(ans)