結果

問題 No.2730 Two Types Luggage
ユーザー なえしらなえしら
提出日時 2024-08-13 23:31:11
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 432 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 267,724 KB
最終ジャッジ日時 2024-08-13 23:31:41
合計ジャッジ時間 26,248 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 74 ms
74,548 KB
testcase_03 AC 41 ms
52,352 KB
testcase_04 AC 258 ms
77,184 KB
testcase_05 AC 182 ms
77,056 KB
testcase_06 AC 50 ms
62,336 KB
testcase_07 AC 38 ms
52,460 KB
testcase_08 AC 38 ms
52,224 KB
testcase_09 AC 132 ms
77,344 KB
testcase_10 AC 52 ms
66,984 KB
testcase_11 AC 422 ms
206,056 KB
testcase_12 AC 1,456 ms
264,132 KB
testcase_13 AC 337 ms
174,464 KB
testcase_14 AC 387 ms
222,024 KB
testcase_15 AC 1,088 ms
107,676 KB
testcase_16 AC 303 ms
121,448 KB
testcase_17 AC 433 ms
231,356 KB
testcase_18 AC 446 ms
231,200 KB
testcase_19 AC 73 ms
79,276 KB
testcase_20 AC 198 ms
131,900 KB
testcase_21 AC 398 ms
216,592 KB
testcase_22 AC 503 ms
256,256 KB
testcase_23 AC 259 ms
90,404 KB
testcase_24 AC 336 ms
156,160 KB
testcase_25 AC 393 ms
207,384 KB
testcase_26 AC 147 ms
102,432 KB
testcase_27 AC 433 ms
214,076 KB
testcase_28 AC 205 ms
140,752 KB
testcase_29 AC 439 ms
232,932 KB
testcase_30 AC 1,830 ms
90,052 KB
testcase_31 AC 334 ms
171,948 KB
testcase_32 AC 296 ms
174,664 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
権限があれば一括ダウンロードができます

ソースコード

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)
P = [0]*(N+1)
for i, a in enumerate(A): P[i+1] = P[i] + a

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 + P[min(W - wgt, N)])

print(ans)
0