結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー pluto77pluto77
提出日時 2019-12-26 14:31:25
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 746 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 1,552 ms
コンパイル使用メモリ 76,556 KB
実行使用メモリ 80,640 KB
最終ジャッジ日時 2024-10-04 05:16:34
合計ジャッジ時間 23,880 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
75,676 KB
testcase_01 AC 67 ms
75,812 KB
testcase_02 AC 84 ms
77,336 KB
testcase_03 AC 71 ms
76,668 KB
testcase_04 AC 65 ms
75,640 KB
testcase_05 AC 66 ms
75,948 KB
testcase_06 AC 75 ms
77,752 KB
testcase_07 AC 70 ms
75,680 KB
testcase_08 AC 73 ms
77,608 KB
testcase_09 AC 108 ms
78,392 KB
testcase_10 AC 96 ms
78,328 KB
testcase_11 AC 101 ms
77,836 KB
testcase_12 AC 209 ms
79,624 KB
testcase_13 AC 502 ms
80,156 KB
testcase_14 AC 143 ms
78,364 KB
testcase_15 AC 166 ms
78,612 KB
testcase_16 AC 208 ms
79,404 KB
testcase_17 AC 235 ms
79,904 KB
testcase_18 AC 65 ms
75,676 KB
testcase_19 AC 64 ms
75,672 KB
testcase_20 AC 68 ms
75,684 KB
testcase_21 AC 88 ms
78,984 KB
testcase_22 AC 89 ms
78,108 KB
testcase_23 AC 91 ms
78,496 KB
testcase_24 AC 525 ms
80,640 KB
testcase_25 AC 643 ms
80,168 KB
testcase_26 AC 712 ms
80,060 KB
testcase_27 AC 701 ms
80,036 KB
testcase_28 AC 651 ms
80,288 KB
testcase_29 AC 630 ms
80,280 KB
testcase_30 AC 72 ms
75,396 KB
testcase_31 AC 67 ms
75,692 KB
testcase_32 AC 86 ms
78,092 KB
testcase_33 AC 91 ms
78,096 KB
testcase_34 AC 95 ms
78,632 KB
testcase_35 AC 624 ms
80,264 KB
testcase_36 AC 608 ms
80,288 KB
testcase_37 AC 654 ms
80,284 KB
testcase_38 AC 716 ms
80,176 KB
testcase_39 AC 650 ms
80,052 KB
testcase_40 AC 727 ms
80,052 KB
testcase_41 AC 734 ms
80,268 KB
testcase_42 AC 734 ms
80,532 KB
testcase_43 AC 723 ms
80,256 KB
testcase_44 AC 736 ms
80,044 KB
testcase_45 AC 746 ms
80,020 KB
testcase_46 AC 673 ms
80,176 KB
testcase_47 AC 675 ms
80,164 KB
testcase_48 AC 650 ms
80,252 KB
testcase_49 AC 651 ms
80,156 KB
testcase_50 AC 655 ms
80,272 KB
testcase_51 AC 659 ms
80,144 KB
testcase_52 AC 373 ms
80,044 KB
testcase_53 AC 445 ms
80,148 KB
testcase_54 AC 503 ms
79,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki951

n,k=map(int,raw_input().split())
pd=[]
for i in range(n):
 p,d=map(int,raw_input().split())
 pd.append([p,d])
pd.sort(key=lambda x:x[0],reverse=True)
dp=[[-(1<<26)] *2 for i in range(k+1)]
dp[0][0]=0
for p,d in pd:
 for i in range(k,-1,-1):
  dp[i][0]=max(dp[i][0],dp[i][1]+d)
  if i>=p:
   dp[i][1]=max(dp[i][1],dp[i-p][0]+d)
print max([max(i) for i in dp])
0