結果

問題 No.2730 Two Types Luggage
ユーザー rarpipipirarpipipi
提出日時 2024-04-20 08:55:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 847 ms / 2,000 ms
コード長 458 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 268,048 KB
最終ジャッジ日時 2024-10-12 04:18:57
合計ジャッジ時間 15,373 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 44 ms
51,840 KB
testcase_02 AC 47 ms
61,056 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 64 ms
62,976 KB
testcase_05 AC 47 ms
60,416 KB
testcase_06 AC 44 ms
59,648 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 49 ms
60,672 KB
testcase_10 AC 54 ms
69,120 KB
testcase_11 AC 398 ms
237,948 KB
testcase_12 AC 847 ms
267,020 KB
testcase_13 AC 338 ms
219,556 KB
testcase_14 AC 395 ms
238,972 KB
testcase_15 AC 485 ms
109,184 KB
testcase_16 AC 187 ms
140,108 KB
testcase_17 AC 463 ms
263,396 KB
testcase_18 AC 433 ms
256,744 KB
testcase_19 AC 75 ms
86,400 KB
testcase_20 AC 208 ms
159,292 KB
testcase_21 AC 391 ms
246,944 KB
testcase_22 AC 481 ms
266,736 KB
testcase_23 AC 112 ms
98,240 KB
testcase_24 AC 252 ms
180,808 KB
testcase_25 AC 395 ms
236,368 KB
testcase_26 AC 147 ms
116,864 KB
testcase_27 AC 389 ms
245,652 KB
testcase_28 AC 227 ms
171,556 KB
testcase_29 AC 440 ms
258,384 KB
testcase_30 AC 446 ms
98,272 KB
testcase_31 AC 331 ms
214,756 KB
testcase_32 AC 284 ms
178,448 KB
testcase_33 AC 838 ms
268,048 KB
testcase_34 AC 844 ms
267,920 KB
testcase_35 AC 847 ms
267,296 KB
testcase_36 AC 839 ms
267,552 KB
testcase_37 AC 838 ms
267,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
n,m,w=map(int,input().split())
a=sorted(list(map(int,input().split())),reverse=True)
acc=[0]+list(accumulate(a))
b=list(map(int,input().split()))
c=list(map(int,input().split()))

ans=acc[min(n,w)]

for i in range(1,1<<m):
    sum_w=0
    v=0
    for j in range(m):
        if i>>j&1==1:
            sum_w+=b[j]
            v+=c[j]

    if sum_w>w:
        continue
    v+=acc[min((w-sum_w),n)]
    ans=max(ans,v)

print(ans)
0