結果

問題 No.2730 Two Types Luggage
ユーザー moon17moon17
提出日時 2024-04-19 22:09:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 938 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 270,832 KB
最終ジャッジ日時 2024-10-11 15:26:57
合計ジャッジ時間 17,428 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 40 ms
51,456 KB
testcase_02 AC 50 ms
60,544 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 68 ms
62,976 KB
testcase_05 AC 51 ms
59,904 KB
testcase_06 AC 48 ms
59,520 KB
testcase_07 AC 41 ms
51,840 KB
testcase_08 AC 40 ms
52,096 KB
testcase_09 AC 52 ms
60,288 KB
testcase_10 AC 62 ms
70,400 KB
testcase_11 AC 486 ms
254,580 KB
testcase_12 AC 914 ms
270,412 KB
testcase_13 AC 395 ms
235,188 KB
testcase_14 AC 485 ms
256,124 KB
testcase_15 AC 516 ms
124,860 KB
testcase_16 AC 208 ms
146,632 KB
testcase_17 AC 529 ms
259,544 KB
testcase_18 AC 504 ms
259,648 KB
testcase_19 AC 90 ms
88,064 KB
testcase_20 AC 243 ms
168,664 KB
testcase_21 AC 468 ms
241,984 KB
testcase_22 AC 586 ms
268,428 KB
testcase_23 AC 124 ms
100,480 KB
testcase_24 AC 271 ms
167,896 KB
testcase_25 AC 484 ms
259,376 KB
testcase_26 AC 168 ms
122,184 KB
testcase_27 AC 468 ms
240,200 KB
testcase_28 AC 263 ms
178,524 KB
testcase_29 AC 512 ms
254,600 KB
testcase_30 AC 461 ms
100,096 KB
testcase_31 AC 388 ms
229,472 KB
testcase_32 AC 341 ms
205,696 KB
testcase_33 AC 933 ms
269,676 KB
testcase_34 AC 932 ms
270,060 KB
testcase_35 AC 927 ms
270,828 KB
testcase_36 AC 938 ms
270,832 KB
testcase_37 AC 928 ms
270,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,w=map(int,input().split())
*a,=map(int,input().split())
*b,=map(int,input().split())
*c,=map(int,input().split())
ar=[0]
for i in sorted(a)[::-1]:
  ar+=ar[-1]+i,
ans=0
for i in range(1<<m):
  v=0
  t=0
  for j in range(m):
    if i>>j&1:
      v+=c[j]
      t+=b[j]
  if t<=w:
    v+=ar[min(w-t,n)]
    ans=max(ans,v)
print(ans)
0