結果
問題 | No.951 【本日限定】1枚頼むともう1枚無料! |
ユーザー | brthyyjp |
提出日時 | 2021-04-21 14:58:25 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,042 bytes |
コンパイル時間 | 245 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 268,928 KB |
最終ジャッジ日時 | 2024-07-04 05:57:21 |
合計ジャッジ時間 | 10,661 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
57,856 KB |
testcase_01 | AC | 45 ms
59,904 KB |
testcase_02 | AC | 56 ms
66,048 KB |
testcase_03 | AC | 50 ms
61,696 KB |
testcase_04 | AC | 46 ms
60,160 KB |
testcase_05 | AC | 39 ms
52,352 KB |
testcase_06 | AC | 55 ms
65,792 KB |
testcase_07 | AC | 45 ms
60,416 KB |
testcase_08 | AC | 59 ms
65,536 KB |
testcase_09 | AC | 135 ms
78,336 KB |
testcase_10 | AC | 105 ms
77,312 KB |
testcase_11 | AC | 102 ms
76,672 KB |
testcase_12 | AC | 729 ms
134,016 KB |
testcase_13 | TLE | - |
testcase_14 | AC | 455 ms
111,192 KB |
testcase_15 | AC | 431 ms
116,352 KB |
testcase_16 | AC | 557 ms
122,988 KB |
testcase_17 | AC | 626 ms
93,824 KB |
testcase_18 | AC | 40 ms
52,608 KB |
testcase_19 | AC | 40 ms
52,736 KB |
testcase_20 | AC | 40 ms
52,608 KB |
testcase_21 | AC | 105 ms
77,696 KB |
testcase_22 | AC | 82 ms
76,056 KB |
testcase_23 | AC | 91 ms
76,416 KB |
testcase_24 | TLE | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
ソースコード
import sys import io, os input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline def main(): n, k = map(int, input().split()) PD = [] for i in range(n): p, d = map(int, input().split()) PD.append((p,d)) PD.sort(key=lambda x: -x[0]) INF = 10**18 dp = [[-INF]*2 for i in range(k+1)] dp[0][0] = 0 for p, d in PD: nx = [[-INF]*2 for i in range(k+1)] for i in range(k+1): for j in range(2): nx[i][j] = max(nx[i][j], dp[i][j]) for i in range(k+1): for j in range(2): if dp[i][j] == -INF: continue if j == 0: if i+p <= k: nx[i+p][1] = max(nx[i+p][1], dp[i][j]+d) else: nx[i][0] = max(nx[i][0], dp[i][j]+d) dp = nx #print(dp) ans = -INF for i in range(k+1): for j in range(2): ans = max(ans, dp[i][j]) print(ans) if __name__ == '__main__': main()