結果

問題 No.2730 Two Types Luggage
ユーザー rlangevinrlangevin
提出日時 2024-04-19 21:37:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 886 ms / 2,000 ms
コード長 474 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 266,828 KB
最終ジャッジ日時 2024-10-11 14:20:53
合計ジャッジ時間 15,677 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,328 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 51 ms
60,416 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 69 ms
62,848 KB
testcase_05 AC 51 ms
59,904 KB
testcase_06 AC 47 ms
59,520 KB
testcase_07 AC 40 ms
51,584 KB
testcase_08 AC 41 ms
51,584 KB
testcase_09 AC 55 ms
60,416 KB
testcase_10 AC 58 ms
66,304 KB
testcase_11 AC 393 ms
206,020 KB
testcase_12 AC 875 ms
264,248 KB
testcase_13 AC 328 ms
173,608 KB
testcase_14 AC 396 ms
207,364 KB
testcase_15 AC 495 ms
107,264 KB
testcase_16 AC 181 ms
117,940 KB
testcase_17 AC 474 ms
231,252 KB
testcase_18 AC 454 ms
230,952 KB
testcase_19 AC 81 ms
78,976 KB
testcase_20 AC 205 ms
131,648 KB
testcase_21 AC 384 ms
203,940 KB
testcase_22 AC 505 ms
255,988 KB
testcase_23 AC 114 ms
89,216 KB
testcase_24 AC 240 ms
142,400 KB
testcase_25 AC 392 ms
206,940 KB
testcase_26 AC 148 ms
102,272 KB
testcase_27 AC 388 ms
202,400 KB
testcase_28 AC 222 ms
140,368 KB
testcase_29 AC 456 ms
232,300 KB
testcase_30 AC 463 ms
92,160 KB
testcase_31 AC 331 ms
169,292 KB
testcase_32 AC 300 ms
174,708 KB
testcase_33 AC 882 ms
266,192 KB
testcase_34 AC 881 ms
266,828 KB
testcase_35 AC 886 ms
264,412 KB
testcase_36 AC 870 ms
263,888 KB
testcase_37 AC 878 ms
264,272 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)
Ac = [0] * (N + 1)
for i in range(N):
    Ac[i + 1] = Ac[i] + A[i]
    
M2 = 1 << M
ans = 0
for s in range(M2):
    b, c = 0, 0
    for i in range(M):
        if (s >> i) & 1:
            b += B[i]
            c += C[i]
    if b > W:
        continue
    ans = max(ans, c + Ac[min(N, W - b)])
    
print(ans)
0