結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 36 ms
53,228 KB
testcase_02 AC 49 ms
62,308 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 34 ms
52,432 KB
testcase_06 AC 45 ms
62,380 KB
testcase_07 AC 35 ms
53,244 KB
testcase_08 AC 41 ms
60,240 KB
testcase_09 AC 63 ms
68,792 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 140 ms
74,416 KB
testcase_13 AC 339 ms
77,228 KB
testcase_14 AC 102 ms
71,860 KB
testcase_15 WA -
testcase_16 AC 116 ms
76,272 KB
testcase_17 AC 130 ms
76,844 KB
testcase_18 AC 35 ms
52,400 KB
testcase_19 AC 33 ms
52,892 KB
testcase_20 AC 34 ms
52,300 KB
testcase_21 AC 56 ms
68,072 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 375 ms
77,528 KB
testcase_25 AC 402 ms
77,252 KB
testcase_26 AC 385 ms
77,380 KB
testcase_27 AC 410 ms
77,048 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 34 ms
52,496 KB
testcase_31 AC 32 ms
52,568 KB
testcase_32 AC 54 ms
66,956 KB
testcase_33 AC 56 ms
66,480 KB
testcase_34 AC 58 ms
67,132 KB
testcase_35 AC 342 ms
77,228 KB
testcase_36 AC 417 ms
76,768 KB
testcase_37 AC 332 ms
77,028 KB
testcase_38 AC 416 ms
77,264 KB
testcase_39 AC 486 ms
76,892 KB
testcase_40 AC 385 ms
76,968 KB
testcase_41 AC 350 ms
77,016 KB
testcase_42 AC 461 ms
76,892 KB
testcase_43 AC 414 ms
76,900 KB
testcase_44 AC 472 ms
76,948 KB
testcase_45 AC 348 ms
76,964 KB
testcase_46 AC 274 ms
77,208 KB
testcase_47 AC 278 ms
77,068 KB
testcase_48 AC 262 ms
76,724 KB
testcase_49 AC 269 ms
76,804 KB
testcase_50 AC 257 ms
77,136 KB
testcase_51 WA -
testcase_52 AC 207 ms
77,508 KB
testcase_53 AC 223 ms
76,848 KB
testcase_54 AC 154 ms
76,620 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,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)
    exit()
0