結果

問題 No.2730 Two Types Luggage
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2024-04-19 21:41:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 885 ms / 2,000 ms
コード長 509 bytes
コンパイル時間 2,836 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 259,116 KB
最終ジャッジ日時 2024-10-11 14:29:17
合計ジャッジ時間 16,301 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 56 ms
61,084 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 70 ms
62,848 KB
testcase_05 AC 53 ms
60,928 KB
testcase_06 AC 43 ms
59,520 KB
testcase_07 AC 36 ms
51,840 KB
testcase_08 AC 35 ms
51,968 KB
testcase_09 AC 46 ms
61,184 KB
testcase_10 AC 49 ms
66,048 KB
testcase_11 AC 396 ms
199,788 KB
testcase_12 AC 885 ms
256,636 KB
testcase_13 AC 287 ms
169,764 KB
testcase_14 AC 340 ms
201,608 KB
testcase_15 AC 486 ms
107,648 KB
testcase_16 AC 161 ms
116,604 KB
testcase_17 AC 407 ms
224,200 KB
testcase_18 AC 386 ms
224,308 KB
testcase_19 AC 80 ms
78,336 KB
testcase_20 AC 181 ms
129,340 KB
testcase_21 AC 330 ms
198,564 KB
testcase_22 AC 440 ms
248,444 KB
testcase_23 AC 96 ms
87,156 KB
testcase_24 AC 209 ms
139,264 KB
testcase_25 AC 341 ms
201,560 KB
testcase_26 AC 129 ms
102,192 KB
testcase_27 AC 327 ms
197,536 KB
testcase_28 AC 196 ms
137,164 KB
testcase_29 AC 398 ms
226,032 KB
testcase_30 AC 454 ms
89,472 KB
testcase_31 AC 289 ms
164,652 KB
testcase_32 AC 265 ms
174,608 KB
testcase_33 AC 827 ms
258,376 KB
testcase_34 AC 826 ms
259,116 KB
testcase_35 AC 826 ms
256,604 KB
testcase_36 AC 834 ms
256,472 KB
testcase_37 AC 848 ms
256,588 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.reverse()

for i in range(len(A)-1):
    A[i+1] += A[i]

ans = 0
for bit in range(2**M):

    nw = 0
    nc = 0
    for i in range(M):
        if (1<<i) & bit:
            nw += B[i]
            nc += C[i]

    #print (nw,nc,A)
    remw = W - nw
    if remw >= 0:
        nc += A[min(remw , len(A)-1)]

        ans = max(ans , nc)

print (ans)
0