#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int n; cin >> n; vector a(n); for(int i = 0; i < n; i++) { cin >> a[i]; } sort(a.begin(), a.end()); int cost = 0; for(int i = 1; i <= n; i++) { cost += abs(a[i - 1] - i); } cout << cost << endl; return 0; }