n=int(input()) n1=list(map(int,input().split())) k=0 i=0 j=-1 while i < n//2 : g=abs(n1[j]-n1[i]) k+=g j-=1 i+=1 print(k)