結果

問題 No.2730 Two Types Luggage
ユーザー PNJPNJ
提出日時 2024-04-19 23:09:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 843 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 266,956 KB
最終ジャッジ日時 2024-10-11 17:24:55
合計ジャッジ時間 14,696 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,156 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 45 ms
60,800 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 60 ms
62,592 KB
testcase_05 AC 44 ms
60,288 KB
testcase_06 AC 42 ms
60,032 KB
testcase_07 AC 36 ms
52,096 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 46 ms
61,296 KB
testcase_10 AC 51 ms
66,688 KB
testcase_11 AC 342 ms
206,344 KB
testcase_12 AC 790 ms
264,420 KB
testcase_13 AC 289 ms
174,500 KB
testcase_14 AC 345 ms
207,368 KB
testcase_15 AC 476 ms
107,520 KB
testcase_16 AC 166 ms
118,408 KB
testcase_17 AC 414 ms
231,700 KB
testcase_18 AC 395 ms
230,924 KB
testcase_19 AC 70 ms
79,232 KB
testcase_20 AC 185 ms
132,284 KB
testcase_21 AC 341 ms
203,688 KB
testcase_22 AC 444 ms
256,288 KB
testcase_23 AC 100 ms
89,472 KB
testcase_24 AC 217 ms
142,280 KB
testcase_25 AC 346 ms
207,320 KB
testcase_26 AC 132 ms
102,272 KB
testcase_27 AC 338 ms
202,908 KB
testcase_28 AC 199 ms
140,500 KB
testcase_29 AC 401 ms
232,424 KB
testcase_30 AC 429 ms
92,264 KB
testcase_31 AC 291 ms
169,040 KB
testcase_32 AC 268 ms
174,576 KB
testcase_33 AC 810 ms
265,932 KB
testcase_34 AC 804 ms
266,956 KB
testcase_35 AC 800 ms
264,272 KB
testcase_36 AC 843 ms
264,140 KB
testcase_37 AC 798 ms
263,756 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()
A.append(0)
A = A[::-1]
for i in range(N):
  A[i+1] += A[i]

ans = A[min(N,W)]

for bit in range(1 << M):
  w,v = 0,0
  for j in range(M):
    if (bit >> j) & 1:
      w += B[j]
      v += C[j]
  if w > W:
    continue
  ans = max(ans,v + A[min(N,W-w)])
print(ans)
0