結果

問題 No.2730 Two Types Luggage
ユーザー なえしらなえしら
提出日時 2024-08-13 23:28:31
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 443 bytes
コンパイル時間 452 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 268,756 KB
最終ジャッジ日時 2024-08-13 23:29:00
合計ジャッジ時間 25,583 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 73 ms
74,112 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 223 ms
76,672 KB
testcase_05 AC 139 ms
76,672 KB
testcase_06 AC 58 ms
61,824 KB
testcase_07 AC 37 ms
52,480 KB
testcase_08 AC 37 ms
52,224 KB
testcase_09 AC 128 ms
76,928 KB
testcase_10 AC 52 ms
68,352 KB
testcase_11 AC 406 ms
231,672 KB
testcase_12 AC 1,390 ms
267,448 KB
testcase_13 AC 312 ms
210,340 KB
testcase_14 AC 384 ms
232,700 KB
testcase_15 AC 1,049 ms
107,264 KB
testcase_16 AC 216 ms
139,820 KB
testcase_17 AC 475 ms
262,724 KB
testcase_18 AC 420 ms
256,556 KB
testcase_19 AC 72 ms
84,224 KB
testcase_20 AC 202 ms
154,168 KB
testcase_21 AC 426 ms
241,064 KB
testcase_22 AC 484 ms
265,588 KB
testcase_23 AC 262 ms
94,208 KB
testcase_24 AC 370 ms
176,964 KB
testcase_25 AC 381 ms
230,480 KB
testcase_26 AC 142 ms
113,492 KB
testcase_27 AC 447 ms
240,284 KB
testcase_28 AC 249 ms
165,452 KB
testcase_29 AC 432 ms
258,664 KB
testcase_30 AC 1,792 ms
94,464 KB
testcase_31 AC 371 ms
206,892 KB
testcase_32 AC 291 ms
174,348 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate

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 = list(accumulate(A, initial=0))

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