結果
問題 | No.615 集合に分けよう |
ユーザー | tktk_snsn |
提出日時 | 2021-08-08 20:42:43 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 336 bytes |
コンパイル時間 | 187 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 23,288 KB |
最終ジャッジ日時 | 2024-09-19 17:23:30 |
合計ジャッジ時間 | 4,874 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
17,572 KB |
testcase_01 | AC | 25 ms
10,624 KB |
testcase_02 | AC | 26 ms
10,624 KB |
testcase_03 | AC | 24 ms
10,624 KB |
testcase_04 | AC | 25 ms
10,624 KB |
testcase_05 | AC | 27 ms
10,880 KB |
testcase_06 | AC | 25 ms
10,624 KB |
testcase_07 | AC | 27 ms
10,880 KB |
testcase_08 | AC | 26 ms
10,752 KB |
testcase_09 | AC | 26 ms
10,752 KB |
testcase_10 | AC | 26 ms
10,752 KB |
testcase_11 | AC | 26 ms
10,752 KB |
testcase_12 | AC | 26 ms
10,752 KB |
testcase_13 | AC | 33 ms
10,752 KB |
testcase_14 | AC | 51 ms
10,880 KB |
testcase_15 | AC | 33 ms
11,776 KB |
testcase_16 | AC | 110 ms
16,344 KB |
testcase_17 | AC | 69 ms
16,200 KB |
testcase_18 | AC | 253 ms
16,092 KB |
testcase_19 | TLE | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
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])