結果

問題 No.2730 Two Types Luggage
ユーザー lollipoplollipop
提出日時 2024-04-19 21:54:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 941 ms / 2,000 ms
コード長 510 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 268,736 KB
最終ジャッジ日時 2024-10-11 14:55:08
合計ジャッジ時間 15,499 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 44 ms
61,400 KB
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 68 ms
73,728 KB
testcase_05 AC 45 ms
62,080 KB
testcase_06 AC 42 ms
59,648 KB
testcase_07 AC 35 ms
52,464 KB
testcase_08 AC 36 ms
52,224 KB
testcase_09 AC 47 ms
63,744 KB
testcase_10 AC 51 ms
68,864 KB
testcase_11 AC 418 ms
231,792 KB
testcase_12 AC 941 ms
266,984 KB
testcase_13 AC 349 ms
215,192 KB
testcase_14 AC 394 ms
233,000 KB
testcase_15 AC 553 ms
107,392 KB
testcase_16 AC 201 ms
138,320 KB
testcase_17 AC 457 ms
263,104 KB
testcase_18 AC 418 ms
256,756 KB
testcase_19 AC 73 ms
85,888 KB
testcase_20 AC 202 ms
156,736 KB
testcase_21 AC 364 ms
241,532 KB
testcase_22 AC 466 ms
266,800 KB
testcase_23 AC 111 ms
96,640 KB
testcase_24 AC 242 ms
177,508 KB
testcase_25 AC 381 ms
230,336 KB
testcase_26 AC 140 ms
114,912 KB
testcase_27 AC 366 ms
240,148 KB
testcase_28 AC 217 ms
168,336 KB
testcase_29 AC 422 ms
258,824 KB
testcase_30 AC 516 ms
96,768 KB
testcase_31 AC 312 ms
210,364 KB
testcase_32 AC 272 ms
174,748 KB
testcase_33 AC 899 ms
267,844 KB
testcase_34 AC 898 ms
268,396 KB
testcase_35 AC 902 ms
268,736 KB
testcase_36 AC 901 ms
268,352 KB
testcase_37 AC 899 ms
268,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate, product

N, M, W = map(int,input().split())
A = sorted(map(int,input().split()), reverse=True)
B = list(map(int,input().split()))
C = list(map(int,input().split()))

BC = [[b, c] for b, c in zip(B, C)]

acc = [0] + list(accumulate(A))

ans = 0
for bit in product([0, 1], repeat=M):
    w = 0; p = 0
    for i in range(M):
        if bit[i]:
            w += BC[i][0]
            p += BC[i][1]
    if w > W:
        continue
    ans = max(ans, p + acc[min(N, W-w)])

print(ans)
0