結果

問題 No.2730 Two Types Luggage
ユーザー なえしらなえしら
提出日時 2024-08-13 23:38:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 843 ms / 2,000 ms
コード長 428 bytes
コンパイル時間 706 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 268,652 KB
最終ジャッジ日時 2024-08-13 23:38:33
合計ジャッジ時間 16,159 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 48 ms
61,312 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 64 ms
63,104 KB
testcase_05 AC 47 ms
60,416 KB
testcase_06 AC 45 ms
59,904 KB
testcase_07 AC 38 ms
52,480 KB
testcase_08 AC 38 ms
52,224 KB
testcase_09 AC 50 ms
61,184 KB
testcase_10 AC 57 ms
68,480 KB
testcase_11 AC 383 ms
231,920 KB
testcase_12 AC 834 ms
266,776 KB
testcase_13 AC 319 ms
210,872 KB
testcase_14 AC 389 ms
232,984 KB
testcase_15 AC 447 ms
107,264 KB
testcase_16 AC 176 ms
136,000 KB
testcase_17 AC 457 ms
262,888 KB
testcase_18 AC 428 ms
256,844 KB
testcase_19 AC 75 ms
84,736 KB
testcase_20 AC 202 ms
154,372 KB
testcase_21 AC 390 ms
241,340 KB
testcase_22 AC 478 ms
266,456 KB
testcase_23 AC 109 ms
96,768 KB
testcase_24 AC 238 ms
177,492 KB
testcase_25 AC 378 ms
231,872 KB
testcase_26 AC 142 ms
113,296 KB
testcase_27 AC 380 ms
240,432 KB
testcase_28 AC 218 ms
165,336 KB
testcase_29 AC 441 ms
258,996 KB
testcase_30 AC 418 ms
97,152 KB
testcase_31 AC 330 ms
205,404 KB
testcase_32 AC 275 ms
174,964 KB
testcase_33 AC 830 ms
267,372 KB
testcase_34 AC 826 ms
268,004 KB
testcase_35 AC 793 ms
268,652 KB
testcase_36 AC 843 ms
268,260 KB
testcase_37 AC 833 ms
267,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate

N, M, W = map(int, input().split())
A = list(accumulate(sorted(map(int,
  input().split()), reverse=True), initial=0))
B = list(map(int, input().split()))
C = list(map(int, input().split()))

ans = 0
for S in range(1<<M):
  wgt = val = 0
  for i in range(M):
    if S>>i&1 == 0: continue
    wgt += B[i]; val += C[i]
  if wgt > W: continue
  ans = max(ans, val + A[min(W - wgt, N)])

print(ans)
0