結果

問題 No.693 square1001 and Permutation 2
ユーザー sinsincoscos
提出日時 2018-06-08 22:25:21
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 528 ms
コンパイル使用メモリ 63,068 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-30 10:46:43
合計ジャッジ時間 1,065 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <cmath>
using namespace std;

int N;
int A[51];

int main(){
	cin >> N;
	for(int i=0;i<N;i++){
		cin >> A[i];
	}
	sort(&A[0],&A[N]);
	int ans = 0;
	for(int i=0;i<N;i++){
		ans += abs(A[i]-(i+1));
	}
	cout << ans << endl;
}
0