結果

問題 No.615 集合に分けよう
ユーザー tktk_snsntktk_snsn
提出日時 2021-08-08 20:43:07
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 336 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 84,972 KB
最終ジャッジ日時 2024-09-19 17:24:16
合計ジャッジ時間 4,784 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
59,416 KB
testcase_01 AC 33 ms
51,992 KB
testcase_02 AC 32 ms
52,468 KB
testcase_03 AC 33 ms
53,036 KB
testcase_04 AC 32 ms
52,552 KB
testcase_05 AC 34 ms
52,080 KB
testcase_06 AC 33 ms
52,872 KB
testcase_07 AC 33 ms
52,160 KB
testcase_08 AC 33 ms
52,532 KB
testcase_09 AC 32 ms
53,072 KB
testcase_10 AC 33 ms
52,480 KB
testcase_11 AC 33 ms
53,004 KB
testcase_12 AC 34 ms
52,892 KB
testcase_13 AC 39 ms
59,936 KB
testcase_14 AC 41 ms
59,980 KB
testcase_15 AC 41 ms
61,604 KB
testcase_16 AC 58 ms
74,480 KB
testcase_17 AC 56 ms
73,520 KB
testcase_18 AC 62 ms
76,452 KB
testcase_19 AC 111 ms
76,536 KB
testcase_20 TLE -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
A = sorted(map(int, input().split()))

m = n - k + 1
dp = [0] * m
for i in range(m):
    dp[i] = A[i] - A[0]

for i in range(1, k):
    for j in range(m):
        dp[j] -= A[i+j]
    for j in range(1, m):
        dp[j] = min(dp[j], dp[j-1])
    for j in range(m):
        dp[j] += A[i+j]

print(dp[m-1])
0