結果

問題 No.2730 Two Types Luggage
ユーザー nikoro256nikoro256
提出日時 2024-04-19 21:43:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 814 ms / 2,000 ms
コード長 448 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 267,200 KB
最終ジャッジ日時 2024-10-11 14:34:41
合計ジャッジ時間 15,144 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,120 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 45 ms
61,568 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 65 ms
63,104 KB
testcase_05 AC 48 ms
60,544 KB
testcase_06 AC 43 ms
59,904 KB
testcase_07 AC 36 ms
52,224 KB
testcase_08 AC 37 ms
51,840 KB
testcase_09 AC 46 ms
60,800 KB
testcase_10 AC 51 ms
66,560 KB
testcase_11 AC 342 ms
206,088 KB
testcase_12 AC 790 ms
264,044 KB
testcase_13 AC 287 ms
174,248 KB
testcase_14 AC 346 ms
207,364 KB
testcase_15 AC 456 ms
107,224 KB
testcase_16 AC 169 ms
118,704 KB
testcase_17 AC 414 ms
231,760 KB
testcase_18 AC 395 ms
231,604 KB
testcase_19 AC 74 ms
79,232 KB
testcase_20 AC 189 ms
131,896 KB
testcase_21 AC 339 ms
203,816 KB
testcase_22 AC 445 ms
256,244 KB
testcase_23 AC 98 ms
87,884 KB
testcase_24 AC 212 ms
143,048 KB
testcase_25 AC 341 ms
207,952 KB
testcase_26 AC 129 ms
102,160 KB
testcase_27 AC 333 ms
203,172 KB
testcase_28 AC 194 ms
140,744 KB
testcase_29 AC 393 ms
232,676 KB
testcase_30 AC 424 ms
90,188 KB
testcase_31 AC 287 ms
169,292 KB
testcase_32 AC 266 ms
174,444 KB
testcase_33 AC 808 ms
266,324 KB
testcase_34 AC 804 ms
267,200 KB
testcase_35 AC 804 ms
264,428 KB
testcase_36 AC 814 ms
264,276 KB
testcase_37 AC 804 ms
264,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,W=map(int,input().split())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
C=list(map(int,input().split()))
A.sort(reverse=True)
A=[0]+A
for i in range(2,len(A)):
    A[i]+=A[i-1]
ans=0
for i in range(2**M):
    cost=0
    value=0
    for j in range(M):
        if i&1>0:
            cost+=B[j]
            value+=C[j]
        i>>=1
    if cost<=W:
        tmp=value+A[min(len(A)-1,W-cost)]
        ans=max(ans,tmp)
print(ans)
0