結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2022-04-04 12:49:12
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 542 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 23,424 KB
最終ジャッジ日時 2024-11-25 03:51:54
合計ジャッジ時間 93,406 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
17,444 KB
testcase_01 AC 27 ms
21,632 KB
testcase_02 AC 27 ms
17,444 KB
testcase_03 AC 29 ms
22,400 KB
testcase_04 AC 29 ms
17,568 KB
testcase_05 AC 28 ms
22,272 KB
testcase_06 AC 31 ms
17,444 KB
testcase_07 AC 30 ms
22,656 KB
testcase_08 AC 30 ms
17,440 KB
testcase_09 AC 229 ms
22,784 KB
testcase_10 AC 141 ms
17,568 KB
testcase_11 AC 119 ms
22,656 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 871 ms
17,824 KB
testcase_16 AC 1,387 ms
17,952 KB
testcase_17 AC 1,889 ms
18,468 KB
testcase_18 AC 30 ms
17,572 KB
testcase_19 AC 29 ms
17,568 KB
testcase_20 AC 30 ms
22,400 KB
testcase_21 AC 165 ms
17,704 KB
testcase_22 AC 94 ms
17,700 KB
testcase_23 AC 134 ms
17,572 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 30 ms
17,440 KB
testcase_31 AC 29 ms
17,572 KB
testcase_32 AC 105 ms
22,656 KB
testcase_33 AC 150 ms
17,572 KB
testcase_34 AC 192 ms
17,832 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
権限があれば一括ダウンロードができます

ソースコード

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