結果

問題 No.838 Noelちゃんと星々3
ユーザー convexineqconvexineq
提出日時 2021-04-03 13:56:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 222 bytes
コンパイル時間 591 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 91,284 KB
最終ジャッジ日時 2024-06-06 23:51:49
合計ジャッジ時間 2,858 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
91,280 KB
testcase_01 AC 83 ms
91,240 KB
testcase_02 AC 87 ms
90,544 KB
testcase_03 AC 86 ms
91,284 KB
testcase_04 AC 86 ms
90,104 KB
testcase_05 AC 35 ms
53,572 KB
testcase_06 AC 34 ms
52,768 KB
testcase_07 AC 34 ms
52,728 KB
testcase_08 AC 35 ms
52,392 KB
testcase_09 AC 34 ms
52,000 KB
testcase_10 AC 34 ms
52,692 KB
testcase_11 AC 35 ms
51,700 KB
testcase_12 AC 35 ms
52,444 KB
testcase_13 AC 35 ms
52,048 KB
testcase_14 AC 35 ms
52,068 KB
testcase_15 AC 36 ms
52,076 KB
testcase_16 AC 35 ms
52,636 KB
testcase_17 AC 34 ms
51,892 KB
testcase_18 AC 34 ms
53,724 KB
testcase_19 AC 35 ms
51,944 KB
testcase_20 AC 36 ms
51,620 KB
testcase_21 AC 35 ms
52,560 KB
testcase_22 AC 36 ms
52,496 KB
testcase_23 AC 35 ms
52,000 KB
testcase_24 AC 35 ms
51,628 KB
testcase_25 AC 35 ms
52,300 KB
testcase_26 AC 33 ms
52,896 KB
testcase_27 AC 33 ms
52,660 KB
testcase_28 AC 35 ms
53,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
a.sort()
INF = 10**18
dp = [INF]*n
dp[1] = a[1] - a[0]
for i in range(2,n):
    dp[i] = min(dp[i-2] + a[i] - a[i-1], (dp[i-3] if i >= 3 else 0) + a[i] - a[i-2])
print(dp[-1])
0