結果

問題 No.2093 Shio Ramen
ユーザー rlangevinrlangevin
提出日時 2023-01-13 00:23:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 354 bytes
コンパイル時間 562 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 74,652 KB
最終ジャッジ日時 2024-12-23 16:31:35
合計ジャッジ時間 4,465 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 37 ms
51,584 KB
testcase_03 AC 36 ms
51,584 KB
testcase_04 AC 34 ms
52,224 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 32 ms
51,840 KB
testcase_08 AC 33 ms
52,096 KB
testcase_09 AC 53 ms
66,688 KB
testcase_10 AC 66 ms
71,424 KB
testcase_11 AC 44 ms
61,696 KB
testcase_12 AC 53 ms
66,816 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 57 ms
70,272 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 70 ms
73,664 KB
testcase_19 WA -
testcase_20 AC 56 ms
69,120 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 68 ms
74,352 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 67 ms
74,496 KB
testcase_28 AC 67 ms
74,240 KB
testcase_29 AC 65 ms
74,112 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, I = map(int, input().split())
inf = 10 ** 18
pre = [-inf] * (I + 1)
pre[0] = 0
for i in range(N):
    s, a = map(int, input().split())
    dp = [-inf] * (I + 1)
    for j in range(I):
        dp[j] = max(dp[j], pre[j])
        if j + s > I:
            continue
        dp[j + s] = max(dp[j + s], pre[j] + a)
    dp, pre =  pre, dp
print(max(pre))    
0