結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2022-04-04 12:49:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 528 ms / 2,000 ms
コード長 542 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 77,952 KB
最終ジャッジ日時 2024-11-25 03:52:16
合計ジャッジ時間 12,508 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,684 KB
testcase_01 AC 33 ms
52,888 KB
testcase_02 AC 46 ms
62,116 KB
testcase_03 AC 42 ms
58,736 KB
testcase_04 AC 36 ms
53,220 KB
testcase_05 AC 35 ms
52,264 KB
testcase_06 AC 43 ms
61,996 KB
testcase_07 AC 36 ms
52,548 KB
testcase_08 AC 46 ms
60,568 KB
testcase_09 AC 64 ms
68,212 KB
testcase_10 AC 59 ms
66,616 KB
testcase_11 AC 66 ms
69,640 KB
testcase_12 AC 144 ms
74,212 KB
testcase_13 AC 345 ms
77,464 KB
testcase_14 AC 106 ms
71,252 KB
testcase_15 AC 95 ms
73,884 KB
testcase_16 AC 117 ms
76,612 KB
testcase_17 AC 135 ms
77,136 KB
testcase_18 AC 36 ms
53,324 KB
testcase_19 AC 36 ms
53,072 KB
testcase_20 AC 36 ms
53,604 KB
testcase_21 AC 57 ms
68,328 KB
testcase_22 AC 57 ms
67,716 KB
testcase_23 AC 60 ms
68,088 KB
testcase_24 AC 380 ms
77,472 KB
testcase_25 AC 407 ms
77,352 KB
testcase_26 AC 386 ms
77,728 KB
testcase_27 AC 422 ms
77,268 KB
testcase_28 AC 274 ms
77,268 KB
testcase_29 AC 271 ms
77,124 KB
testcase_30 AC 37 ms
53,012 KB
testcase_31 AC 38 ms
52,120 KB
testcase_32 AC 57 ms
67,280 KB
testcase_33 AC 57 ms
66,900 KB
testcase_34 AC 60 ms
66,872 KB
testcase_35 AC 349 ms
77,452 KB
testcase_36 AC 426 ms
77,344 KB
testcase_37 AC 359 ms
77,420 KB
testcase_38 AC 424 ms
77,480 KB
testcase_39 AC 528 ms
77,640 KB
testcase_40 AC 412 ms
77,952 KB
testcase_41 AC 360 ms
77,468 KB
testcase_42 AC 462 ms
77,824 KB
testcase_43 AC 419 ms
77,648 KB
testcase_44 AC 505 ms
77,688 KB
testcase_45 AC 363 ms
77,748 KB
testcase_46 AC 290 ms
77,284 KB
testcase_47 AC 290 ms
77,152 KB
testcase_48 AC 272 ms
77,492 KB
testcase_49 AC 275 ms
77,128 KB
testcase_50 AC 268 ms
77,308 KB
testcase_51 AC 290 ms
77,464 KB
testcase_52 AC 213 ms
77,688 KB
testcase_53 AC 234 ms
77,340 KB
testcase_54 AC 170 ms
77,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main1(n,k,pd):
    pd.sort(key=lambda x:x[0],reverse=True)
    dp0=[-1]*(k+1)
    dp1=[-1]*(k+1)
    dp0[0]=0
    for p,d in pd:
        for i in range(k,-1,-1):
            if dp1[i]>=0:
                dp0[i]=max(dp0[i],dp1[i]+d)   # チケット使う
            if i-p>=0 and dp0[i-p]>=0:
                dp1[i]=max(dp1[i],dp0[i-p]+d) # 買う
    return max(max(dp0),max(dp1))
if __name__=='__main__':
    n,k=map(int,input().split())
    pd=[list(map(int,input().split())) for _ in range(n)]
    ret1=main1(n,k,pd)
    print(ret1)
0