結果

問題 No.2730 Two Types Luggage
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-04-19 22:15:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 855 ms / 2,000 ms
コード長 353 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 266,956 KB
最終ジャッジ日時 2024-10-11 15:39:33
合計ジャッジ時間 15,321 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 50 ms
60,288 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 66 ms
62,336 KB
testcase_05 AC 51 ms
59,776 KB
testcase_06 AC 47 ms
59,776 KB
testcase_07 AC 39 ms
51,712 KB
testcase_08 AC 41 ms
51,968 KB
testcase_09 AC 51 ms
60,544 KB
testcase_10 AC 59 ms
66,432 KB
testcase_11 AC 391 ms
205,692 KB
testcase_12 AC 827 ms
263,960 KB
testcase_13 AC 335 ms
174,244 KB
testcase_14 AC 415 ms
207,124 KB
testcase_15 AC 449 ms
107,160 KB
testcase_16 AC 189 ms
118,424 KB
testcase_17 AC 484 ms
231,240 KB
testcase_18 AC 431 ms
230,832 KB
testcase_19 AC 71 ms
79,020 KB
testcase_20 AC 201 ms
131,648 KB
testcase_21 AC 370 ms
203,568 KB
testcase_22 AC 480 ms
255,748 KB
testcase_23 AC 104 ms
89,088 KB
testcase_24 AC 221 ms
142,612 KB
testcase_25 AC 379 ms
207,444 KB
testcase_26 AC 137 ms
102,144 KB
testcase_27 AC 364 ms
203,048 KB
testcase_28 AC 207 ms
140,248 KB
testcase_29 AC 435 ms
232,312 KB
testcase_30 AC 412 ms
91,904 KB
testcase_31 AC 326 ms
168,792 KB
testcase_32 AC 286 ms
174,324 KB
testcase_33 AC 833 ms
265,952 KB
testcase_34 AC 823 ms
266,956 KB
testcase_35 AC 819 ms
264,292 KB
testcase_36 AC 855 ms
263,804 KB
testcase_37 AC 821 ms
263,888 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.reverse()
a=[0]+a
for i in range(n):
  a[i+1]+=a[i]
g=0
for i in range(1<<m):
  g1=0
  g2=0
  for j in range(m):
    g1+=((i>>j)&1)*b[j]
    g2+=((i>>j)&1)*c[j]
  if g1<=w:
    g=max(g,g2+a[min(n,w-g1)])
print(g)
0