結果

問題 No.693 square1001 and Permutation 2
ユーザー htensaihtensai
提出日時 2019-11-12 07:39:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 2,251 ms
コンパイル使用メモリ 75,136 KB
実行使用メモリ 41,844 KB
最終ジャッジ日時 2024-09-17 09:49:28
合計ジャッジ時間 4,318 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,264 KB
testcase_01 AC 131 ms
41,112 KB
testcase_02 AC 127 ms
41,040 KB
testcase_03 AC 136 ms
41,844 KB
testcase_04 AC 137 ms
41,244 KB
testcase_05 AC 133 ms
41,016 KB
testcase_06 AC 130 ms
41,100 KB
testcase_07 AC 116 ms
40,340 KB
testcase_08 AC 129 ms
41,040 KB
testcase_09 AC 129 ms
41,440 KB
testcase_10 AC 128 ms
41,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] arr = new int[n];
		for (int i = 0; i < n; i++) {
		    arr[i] = sc.nextInt();
		}
		Arrays.sort(arr);
		int total = 0;
		for (int i = 1; i <= n; i++) {
		    total += Math.abs(arr[i - 1] - i);
		}
		System.out.println(total);
	}
}
0