結果

問題 No.838 Noelちゃんと星々3
ユーザー tentententen
提出日時 2020-12-04 12:35:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 804 ms / 2,000 ms
コード長 717 bytes
コンパイル時間 2,511 ms
コンパイル使用メモリ 77,052 KB
実行使用メモリ 55,036 KB
最終ジャッジ日時 2024-09-14 22:31:06
合計ジャッジ時間 11,653 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 754 ms
51,120 KB
testcase_01 AC 748 ms
50,984 KB
testcase_02 AC 804 ms
51,760 KB
testcase_03 AC 723 ms
55,036 KB
testcase_04 AC 721 ms
53,428 KB
testcase_05 AC 142 ms
41,108 KB
testcase_06 AC 136 ms
41,336 KB
testcase_07 AC 140 ms
41,168 KB
testcase_08 AC 141 ms
41,124 KB
testcase_09 AC 144 ms
41,196 KB
testcase_10 AC 138 ms
41,468 KB
testcase_11 AC 146 ms
41,412 KB
testcase_12 AC 140 ms
41,288 KB
testcase_13 AC 121 ms
40,176 KB
testcase_14 AC 130 ms
40,996 KB
testcase_15 AC 139 ms
41,548 KB
testcase_16 AC 117 ms
39,992 KB
testcase_17 AC 129 ms
41,252 KB
testcase_18 AC 140 ms
41,188 KB
testcase_19 AC 130 ms
40,076 KB
testcase_20 AC 130 ms
41,368 KB
testcase_21 AC 134 ms
41,064 KB
testcase_22 AC 131 ms
41,072 KB
testcase_23 AC 133 ms
41,264 KB
testcase_24 AC 131 ms
41,312 KB
testcase_25 AC 131 ms
41,152 KB
testcase_26 AC 134 ms
41,268 KB
testcase_27 AC 130 ms
41,052 KB
testcase_28 AC 133 ms
41,056 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);
        long[][] dp = new long[n][2];
        dp[0][1] = 0;
        dp[0][0] = Long.MAX_VALUE / 10;
        dp[1][0] = arr[1] - arr[0];
        dp[1][1] = Long.MAX_VALUE / 10;
        for (int i = 2; i < n; i++) {
            dp[i][0] = Math.min(dp[i - 1][1] + arr[i] - arr[i - 1], dp[i - 2][1] + arr[i] - arr[i - 2]);
            dp[i][1] = dp[i - 1][0];
        }
        System.out.println(dp[n - 1][0]);
    }
}
0