結果

問題 No.2730 Two Types Luggage
ユーザー Nikkuniku029Nikkuniku029
提出日時 2024-04-20 06:38:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 922 ms / 2,000 ms
コード長 475 bytes
コンパイル時間 1,107 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 266,060 KB
最終ジャッジ日時 2024-10-12 01:47:04
合計ジャッジ時間 20,587 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,584 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 52 ms
60,672 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 70 ms
63,104 KB
testcase_05 AC 51 ms
60,416 KB
testcase_06 AC 47 ms
59,648 KB
testcase_07 AC 40 ms
52,096 KB
testcase_08 AC 39 ms
52,224 KB
testcase_09 AC 53 ms
60,800 KB
testcase_10 AC 60 ms
68,992 KB
testcase_11 AC 441 ms
243,448 KB
testcase_12 AC 904 ms
263,228 KB
testcase_13 AC 401 ms
219,804 KB
testcase_14 AC 431 ms
244,596 KB
testcase_15 AC 514 ms
109,056 KB
testcase_16 AC 196 ms
140,468 KB
testcase_17 AC 501 ms
265,296 KB
testcase_18 AC 473 ms
257,712 KB
testcase_19 AC 85 ms
86,016 KB
testcase_20 AC 226 ms
159,680 KB
testcase_21 AC 438 ms
252,316 KB
testcase_22 AC 523 ms
264,060 KB
testcase_23 AC 123 ms
98,048 KB
testcase_24 AC 287 ms
183,624 KB
testcase_25 AC 432 ms
242,016 KB
testcase_26 AC 157 ms
116,388 KB
testcase_27 AC 422 ms
251,172 KB
testcase_28 AC 242 ms
171,212 KB
testcase_29 AC 497 ms
257,264 KB
testcase_30 AC 473 ms
98,048 KB
testcase_31 AC 357 ms
214,728 KB
testcase_32 AC 316 ms
178,468 KB
testcase_33 AC 910 ms
265,428 KB
testcase_34 AC 917 ms
266,060 KB
testcase_35 AC 914 ms
263,392 KB
testcase_36 AC 922 ms
263,508 KB
testcase_37 AC 898 ms
263,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate

N, M, W = map(int, input().split())
A = sorted(list(map(int, input().split())))[::-1]
B = list(map(int, input().split()))
C = list(map(int, input().split()))
cumA = list(accumulate(A, initial=0))
ans = 0
for i in range(1 << M):
    tmp = 0
    w = 0
    for j in range(M):
        if i & (1 << j):
            w += B[j]
            tmp += C[j]
    if w > W:
        continue
    tmp += cumA[min(W - w, N)]
    ans = max(ans, tmp)
print(ans)
0