結果

問題 No.693 square1001 and Permutation 2
ユーザー GrenacheGrenache
提出日時 2018-06-08 22:26:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 821 bytes
コンパイル時間 3,602 ms
コンパイル使用メモリ 77,052 KB
実行使用メモリ 54,428 KB
最終ジャッジ日時 2024-06-30 10:47:53
合計ジャッジ時間 5,937 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,116 KB
testcase_01 AC 136 ms
54,208 KB
testcase_02 AC 136 ms
53,884 KB
testcase_03 AC 141 ms
54,100 KB
testcase_04 AC 142 ms
54,052 KB
testcase_05 AC 135 ms
54,056 KB
testcase_06 AC 134 ms
53,956 KB
testcase_07 AC 134 ms
54,052 KB
testcase_08 AC 137 ms
54,252 KB
testcase_09 AC 136 ms
54,280 KB
testcase_10 AC 134 ms
54,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder693 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int n = sc.nextInt();

		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}

		Arrays.sort(a);

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

		pr.println(ans);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(INPUT == null ? System.in : new ByteArrayInputStream(INPUT.getBytes()));
		pr = new Printer(System.out);

		solve();

//		pr.close();
		pr.flush();
//		sc.close();
	}

	static String INPUT = null;

	private static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0