結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー titiatitia
提出日時 2020-01-04 20:26:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 484 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 654 ms
コンパイル使用メモリ 81,596 KB
実行使用メモリ 77,416 KB
最終ジャッジ日時 2024-11-22 21:29:11
合計ジャッジ時間 13,137 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,736 KB
testcase_01 AC 39 ms
51,736 KB
testcase_02 AC 50 ms
61,768 KB
testcase_03 AC 44 ms
58,472 KB
testcase_04 AC 41 ms
52,504 KB
testcase_05 AC 39 ms
53,124 KB
testcase_06 AC 48 ms
61,140 KB
testcase_07 AC 39 ms
53,200 KB
testcase_08 AC 47 ms
60,988 KB
testcase_09 AC 72 ms
69,736 KB
testcase_10 AC 65 ms
67,128 KB
testcase_11 AC 65 ms
66,996 KB
testcase_12 AC 143 ms
76,596 KB
testcase_13 AC 339 ms
77,092 KB
testcase_14 AC 103 ms
72,776 KB
testcase_15 AC 100 ms
71,376 KB
testcase_16 AC 122 ms
76,088 KB
testcase_17 AC 139 ms
77,160 KB
testcase_18 AC 39 ms
52,128 KB
testcase_19 AC 39 ms
53,220 KB
testcase_20 AC 39 ms
52,104 KB
testcase_21 AC 62 ms
66,272 KB
testcase_22 AC 60 ms
65,576 KB
testcase_23 AC 61 ms
66,644 KB
testcase_24 AC 335 ms
76,668 KB
testcase_25 AC 367 ms
77,020 KB
testcase_26 AC 375 ms
77,416 KB
testcase_27 AC 383 ms
77,384 KB
testcase_28 AC 272 ms
76,860 KB
testcase_29 AC 289 ms
76,880 KB
testcase_30 AC 39 ms
52,624 KB
testcase_31 AC 39 ms
53,376 KB
testcase_32 AC 59 ms
64,780 KB
testcase_33 AC 63 ms
65,944 KB
testcase_34 AC 66 ms
67,156 KB
testcase_35 AC 484 ms
76,980 KB
testcase_36 AC 397 ms
76,860 KB
testcase_37 AC 391 ms
76,840 KB
testcase_38 AC 400 ms
77,280 KB
testcase_39 AC 399 ms
76,940 KB
testcase_40 AC 403 ms
77,028 KB
testcase_41 AC 404 ms
76,656 KB
testcase_42 AC 402 ms
76,748 KB
testcase_43 AC 397 ms
77,384 KB
testcase_44 AC 397 ms
77,064 KB
testcase_45 AC 399 ms
77,208 KB
testcase_46 AC 280 ms
76,892 KB
testcase_47 AC 274 ms
76,436 KB
testcase_48 AC 279 ms
77,228 KB
testcase_49 AC 268 ms
76,752 KB
testcase_50 AC 276 ms
76,760 KB
testcase_51 AC 284 ms
76,984 KB
testcase_52 AC 320 ms
76,992 KB
testcase_53 AC 326 ms
76,744 KB
testcase_54 AC 173 ms
76,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
P=[tuple(map(int,input().split())) for i in range(N)]

P.sort(reverse=True)

BUY=[0]*(K+1)
SERVICE=[0]*(K+1)

for p,d in P:
    for i in range(K,-1,-1):
        if BUY[i]!=0:
            SERVICE[i]=max(SERVICE[i],BUY[i]+d)
        if i>=p:
            BUY[i]=max(BUY[i],SERVICE[i-p]+d)

    #print(BUY,SERVICE)

print(max(max(BUY),max(SERVICE)))
0