結果

問題 No.2730 Two Types Luggage
ユーザー なえしらなえしら
提出日時 2024-08-13 14:06:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,950 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 268,496 KB
最終ジャッジ日時 2024-08-13 14:06:50
合計ジャッジ時間 23,996 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 66 ms
74,564 KB
testcase_03 AC 33 ms
52,352 KB
testcase_04 AC 194 ms
76,884 KB
testcase_05 AC 127 ms
77,172 KB
testcase_06 AC 45 ms
62,336 KB
testcase_07 AC 34 ms
52,224 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 119 ms
76,928 KB
testcase_10 AC 51 ms
68,608 KB
testcase_11 AC 360 ms
232,188 KB
testcase_12 AC 1,274 ms
266,964 KB
testcase_13 AC 298 ms
210,980 KB
testcase_14 AC 357 ms
233,084 KB
testcase_15 AC 926 ms
107,288 KB
testcase_16 AC 199 ms
139,304 KB
testcase_17 AC 439 ms
262,992 KB
testcase_18 AC 407 ms
257,024 KB
testcase_19 AC 73 ms
84,736 KB
testcase_20 AC 185 ms
154,676 KB
testcase_21 AC 408 ms
241,188 KB
testcase_22 AC 467 ms
266,228 KB
testcase_23 AC 245 ms
94,848 KB
testcase_24 AC 313 ms
177,224 KB
testcase_25 AC 375 ms
230,356 KB
testcase_26 AC 129 ms
113,664 KB
testcase_27 AC 415 ms
240,532 KB
testcase_28 AC 197 ms
165,804 KB
testcase_29 AC 415 ms
259,044 KB
testcase_30 AC 1,551 ms
94,464 KB
testcase_31 AC 324 ms
207,432 KB
testcase_32 AC 270 ms
174,576 KB
testcase_33 AC 1,899 ms
267,484 KB
testcase_34 AC 1,950 ms
268,368 KB
testcase_35 AC 1,844 ms
268,496 KB
testcase_36 AC 1,870 ms
268,372 KB
testcase_37 AC 1,887 ms
268,240 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 = sum(b for i, b in enumerate(B) if S>>i&1)
  if wgt > W: continue
  val = sum(c for i, c in enumerate(C) if S>>i&1)
  ans = max(ans, val + A[min(W - wgt, N)])

print(ans)
0