結果

問題 No.693 square1001 and Permutation 2
ユーザー tsunabittsunabit
提出日時 2019-06-23 12:12:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 473 bytes
コンパイル時間 3,361 ms
コンパイル使用メモリ 75,448 KB
実行使用メモリ 41,400 KB
最終ジャッジ日時 2024-06-07 23:19:34
合計ジャッジ時間 4,902 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,400 KB
testcase_01 AC 106 ms
40,088 KB
testcase_02 AC 119 ms
41,276 KB
testcase_03 AC 113 ms
40,116 KB
testcase_04 AC 113 ms
40,076 KB
testcase_05 AC 118 ms
41,380 KB
testcase_06 AC 108 ms
39,932 KB
testcase_07 AC 121 ms
41,256 KB
testcase_08 AC 107 ms
40,468 KB
testcase_09 AC 116 ms
41,072 KB
testcase_10 AC 107 ms
40,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No693 {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int[] a = new int[n];
    	for(int i = 0; i < n; i++) {
    		a[i] = sc.nextInt();
    	}
    	Arrays.sort(a);
    	int c = 0;
    	for(int i = 0; i < n; i++) {
    		if(a[i] != i + 1) {
    			c += Math.abs(i + 1 - a[i]);
    		}
    	}
    	System.out.println(c);
    }
}
0