結果

問題 No.2730 Two Types Luggage
ユーザー vwxyzvwxyz
提出日時 2024-08-09 04:55:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,013 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 266,848 KB
最終ジャッジ日時 2024-08-09 04:55:32
合計ジャッジ時間 20,960 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 52 ms
61,184 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 68 ms
62,720 KB
testcase_05 AC 51 ms
60,672 KB
testcase_06 AC 47 ms
59,392 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 40 ms
52,096 KB
testcase_09 AC 53 ms
60,800 KB
testcase_10 AC 59 ms
66,432 KB
testcase_11 AC 399 ms
206,220 KB
testcase_12 AC 905 ms
264,124 KB
testcase_13 AC 353 ms
174,260 KB
testcase_14 AC 399 ms
207,232 KB
testcase_15 AC 525 ms
107,520 KB
testcase_16 AC 219 ms
118,328 KB
testcase_17 AC 502 ms
232,024 KB
testcase_18 AC 466 ms
231,104 KB
testcase_19 AC 74 ms
78,976 KB
testcase_20 AC 212 ms
131,912 KB
testcase_21 AC 375 ms
203,680 KB
testcase_22 AC 479 ms
256,256 KB
testcase_23 AC 112 ms
89,472 KB
testcase_24 AC 278 ms
142,408 KB
testcase_25 AC 407 ms
207,704 KB
testcase_26 AC 147 ms
102,272 KB
testcase_27 AC 380 ms
202,912 KB
testcase_28 AC 246 ms
140,576 KB
testcase_29 AC 514 ms
233,080 KB
testcase_30 AC 458 ms
92,412 KB
testcase_31 AC 338 ms
169,040 KB
testcase_32 AC 363 ms
174,712 KB
testcase_33 AC 883 ms
266,232 KB
testcase_34 AC 909 ms
266,848 KB
testcase_35 AC 860 ms
264,168 KB
testcase_36 AC 978 ms
264,260 KB
testcase_37 AC 1,013 ms
263,892 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(1,N+1):
    A[i]+=A[i-1]
ans=0
for bit in range(1<<M):
    b,c=0,0
    for m in range(M):
        if bit&1<<m:
            b+=B[m]
            c+=C[m]
    if b>W:
        continue
    ans=max(ans,c+A[min(N,W-b)])
print(ans)
0