#include <iostream>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n;
cin >> n;
long long arr[n];
for(int i=0; i < n; i++)
{
cin >> arr[i];
}
long long ans = 0;
for(int i=0; i < n / 2; i++)
{
ans += abs(arr[i] - arr[n - 1 - i]);
}
cout << ans;
return 0;
}