結果
問題 | No.31 悪のミックスジュース |
ユーザー | szkhts |
提出日時 | 2021-07-07 09:46:39 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 614 bytes |
コンパイル時間 | 81 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 821,248 KB |
最終ジャッジ日時 | 2024-07-01 12:19:05 |
合計ジャッジ時間 | 5,764 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 831 ms
38,912 KB |
testcase_01 | MLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
import itertools N, V = map(int, input().split()) packs = list(map(int, input().split())) com = [i + 1 for i in range(V - N + 1)] * N com_list = sorted(list(set(itertools.combinations(com, N))), reverse=True) com_list_v = [] for c in com_list: temp = sorted(c, reverse=True) if sum(temp) == V and temp not in com_list_v: com_list_v.append(temp) min_price = float('inf') if N >= V: min_price = sum(packs) else: for v in com_list_v: tmp = 0 for i in range(len(v)): tmp += packs[i] * v[i] if min_price > tmp: min_price = tmp print(min_price)