結果

問題 No.2093 Shio Ramen
ユーザー rlangevinrlangevin
提出日時 2023-01-13 00:23:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 354 bytes
コンパイル時間 519 ms
コンパイル使用メモリ 81,808 KB
実行使用メモリ 74,632 KB
最終ジャッジ日時 2024-06-06 04:56:31
合計ジャッジ時間 3,227 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,568 KB
testcase_01 AC 34 ms
52,376 KB
testcase_02 AC 34 ms
52,404 KB
testcase_03 AC 35 ms
53,376 KB
testcase_04 AC 34 ms
51,992 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 32 ms
53,812 KB
testcase_08 AC 33 ms
52,060 KB
testcase_09 AC 51 ms
68,588 KB
testcase_10 AC 60 ms
72,284 KB
testcase_11 AC 43 ms
61,908 KB
testcase_12 AC 52 ms
66,464 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 58 ms
71,344 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 67 ms
74,328 KB
testcase_19 WA -
testcase_20 AC 57 ms
69,776 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 67 ms
74,112 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 63 ms
73,740 KB
testcase_28 AC 64 ms
74,552 KB
testcase_29 AC 64 ms
74,272 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