結果

問題 No.838 Noelちゃんと星々3
ユーザー htensaihtensai
提出日時 2020-05-08 17:05:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 714 ms / 2,000 ms
コード長 615 bytes
コンパイル時間 2,063 ms
コンパイル使用メモリ 75,416 KB
実行使用メモリ 61,368 KB
最終ジャッジ日時 2024-07-03 09:54:04
合計ジャッジ時間 10,244 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 648 ms
61,368 KB
testcase_01 AC 642 ms
59,448 KB
testcase_02 AC 714 ms
59,800 KB
testcase_03 AC 663 ms
59,916 KB
testcase_04 AC 645 ms
59,740 KB
testcase_05 AC 134 ms
54,348 KB
testcase_06 AC 122 ms
54,072 KB
testcase_07 AC 128 ms
54,360 KB
testcase_08 AC 138 ms
54,260 KB
testcase_09 AC 129 ms
54,088 KB
testcase_10 AC 129 ms
54,200 KB
testcase_11 AC 134 ms
54,300 KB
testcase_12 AC 134 ms
54,288 KB
testcase_13 AC 135 ms
54,156 KB
testcase_14 AC 123 ms
54,140 KB
testcase_15 AC 133 ms
54,500 KB
testcase_16 AC 120 ms
53,988 KB
testcase_17 AC 121 ms
54,168 KB
testcase_18 AC 131 ms
54,084 KB
testcase_19 AC 115 ms
53,160 KB
testcase_20 AC 108 ms
52,976 KB
testcase_21 AC 112 ms
53,096 KB
testcase_22 AC 119 ms
53,976 KB
testcase_23 AC 108 ms
53,236 KB
testcase_24 AC 121 ms
54,364 KB
testcase_25 AC 120 ms
53,992 KB
testcase_26 AC 119 ms
54,344 KB
testcase_27 AC 119 ms
54,332 KB
testcase_28 AC 118 ms
53,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		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);
		if (n <= 3) {
		    System.out.println(arr[n - 1] - arr[0]);
		    return;
		}
		long[] dp = new long[n];
		dp[0] = Long.MAX_VALUE / 10;
		dp[1] = arr[1] - arr[0];
		dp[2] = arr[2] - arr[0];
		for (int i = 3; i < n; i++) {
		    dp[i] = Math.min(dp[i - 2] + arr[i] - arr[i - 1], dp[i - 3] + arr[i] - arr[i - 2]);
		}
		System.out.println(dp[n - 1]);
	}
}
0