結果

問題 No.2730 Two Types Luggage
ユーザー prd_xxxprd_xxx
提出日時 2024-04-19 21:32:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 865 ms / 2,000 ms
コード長 475 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 268,896 KB
最終ジャッジ日時 2024-10-11 14:10:41
合計ジャッジ時間 14,334 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,136 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 46 ms
61,204 KB
testcase_03 AC 37 ms
53,876 KB
testcase_04 AC 62 ms
64,556 KB
testcase_05 AC 45 ms
61,704 KB
testcase_06 AC 42 ms
60,884 KB
testcase_07 AC 36 ms
52,384 KB
testcase_08 AC 37 ms
52,192 KB
testcase_09 AC 47 ms
61,368 KB
testcase_10 AC 54 ms
69,756 KB
testcase_11 AC 384 ms
254,780 KB
testcase_12 AC 504 ms
267,480 KB
testcase_13 AC 310 ms
212,904 KB
testcase_14 AC 374 ms
254,696 KB
testcase_15 AC 159 ms
107,688 KB
testcase_16 AC 176 ms
136,072 KB
testcase_17 AC 460 ms
264,016 KB
testcase_18 AC 426 ms
257,856 KB
testcase_19 AC 74 ms
85,364 KB
testcase_20 AC 202 ms
154,972 KB
testcase_21 AC 385 ms
251,316 KB
testcase_22 AC 475 ms
266,616 KB
testcase_23 AC 106 ms
95,304 KB
testcase_24 AC 228 ms
168,684 KB
testcase_25 AC 377 ms
255,072 KB
testcase_26 AC 140 ms
113,996 KB
testcase_27 AC 378 ms
250,136 KB
testcase_28 AC 214 ms
163,480 KB
testcase_29 AC 435 ms
255,992 KB
testcase_30 AC 468 ms
97,032 KB
testcase_31 AC 312 ms
206,772 KB
testcase_32 AC 268 ms
174,528 KB
testcase_33 AC 849 ms
267,616 KB
testcase_34 AC 849 ms
268,640 KB
testcase_35 AC 850 ms
268,896 KB
testcase_36 AC 865 ms
268,352 KB
testcase_37 AC 842 ms
268,252 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)
cums = [0]
for a in A:
    cums.append(cums[-1] + a)

ans = 0
for b in range(1<<M):
    w = v = 0
    for i in range(M):
        if b&(1<<i):
            w += B[i]
            v += C[i]
            if w > W:
                break
    else:
        rem = min(W - w, N)
        ans = max(ans, cums[rem] + v)
print(ans)
0