結果

問題 No.693 square1001 and Permutation 2
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-06-08 23:32:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 2,417 ms
コンパイル使用メモリ 74,380 KB
実行使用メモリ 41,592 KB
最終ジャッジ日時 2024-06-30 11:09:42
合計ジャッジ時間 4,232 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,392 KB
testcase_01 AC 134 ms
41,592 KB
testcase_02 AC 132 ms
41,288 KB
testcase_03 AC 138 ms
41,484 KB
testcase_04 AC 136 ms
41,228 KB
testcase_05 AC 134 ms
41,172 KB
testcase_06 AC 132 ms
41,356 KB
testcase_07 AC 131 ms
41,240 KB
testcase_08 AC 132 ms
41,312 KB
testcase_09 AC 116 ms
40,216 KB
testcase_10 AC 132 ms
41,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        int[] a = new int[n];
        for(int i=0; i<n; i++) a[i] = in.nextInt();

        Arrays.sort(a);

        int sum = 0;
        for(int i=0; i<n; i++) {
            sum += Math.abs(a[i] - (i + 1));
        }

        System.out.println(sum);
    }
}
0