結果

問題 No.2730 Two Types Luggage
ユーザー nouka28nouka28
提出日時 2024-04-20 09:09:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 796 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 268,592 KB
最終ジャッジ日時 2024-10-12 04:33:17
合計ジャッジ時間 14,367 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,068 KB
testcase_01 AC 34 ms
52,684 KB
testcase_02 AC 41 ms
61,108 KB
testcase_03 AC 33 ms
53,380 KB
testcase_04 AC 58 ms
63,072 KB
testcase_05 AC 42 ms
61,020 KB
testcase_06 AC 39 ms
59,728 KB
testcase_07 AC 33 ms
52,180 KB
testcase_08 AC 33 ms
52,756 KB
testcase_09 AC 43 ms
61,748 KB
testcase_10 AC 49 ms
68,972 KB
testcase_11 AC 456 ms
253,784 KB
testcase_12 AC 757 ms
266,936 KB
testcase_13 AC 326 ms
211,776 KB
testcase_14 AC 367 ms
255,476 KB
testcase_15 AC 457 ms
107,356 KB
testcase_16 AC 176 ms
136,212 KB
testcase_17 AC 469 ms
264,024 KB
testcase_18 AC 409 ms
257,668 KB
testcase_19 AC 72 ms
85,044 KB
testcase_20 AC 186 ms
154,916 KB
testcase_21 AC 349 ms
251,416 KB
testcase_22 AC 444 ms
266,304 KB
testcase_23 AC 98 ms
95,784 KB
testcase_24 AC 221 ms
168,380 KB
testcase_25 AC 351 ms
254,880 KB
testcase_26 AC 132 ms
114,136 KB
testcase_27 AC 343 ms
250,536 KB
testcase_28 AC 209 ms
163,252 KB
testcase_29 AC 402 ms
255,956 KB
testcase_30 AC 419 ms
96,916 KB
testcase_31 AC 297 ms
208,188 KB
testcase_32 AC 251 ms
174,660 KB
testcase_33 AC 774 ms
267,532 KB
testcase_34 AC 776 ms
268,408 KB
testcase_35 AC 790 ms
268,548 KB
testcase_36 AC 796 ms
268,592 KB
testcase_37 AC 752 ms
268,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,w=map(int,input().split())
a=list(map(int,input().split()))
a.sort()
a.reverse()
sm=[0]
for i in a:sm.append(sm[-1]+i)

b=list(map(int,input().split()))
c=list(map(int,input().split()))

ans=0
for S in range(1<<m):
    wsum=0
    vsum=0
    for i in range(m):
        if S>>i&1:
            wsum+=b[i]
            vsum+=c[i]
    if wsum>w:continue
    vsum+=sm[min(n,w-wsum)]
    ans=max(ans,vsum)
print(ans)
0