結果

問題 No.2093 Shio Ramen
ユーザー ntudantuda
提出日時 2022-10-08 13:36:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 1,563 ms
コンパイル使用メモリ 81,708 KB
実行使用メモリ 74,676 KB
最終ジャッジ日時 2024-06-22 15:52:02
合計ジャッジ時間 2,872 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,332 KB
testcase_01 AC 34 ms
52,452 KB
testcase_02 AC 35 ms
52,752 KB
testcase_03 AC 34 ms
53,360 KB
testcase_04 AC 35 ms
52,128 KB
testcase_05 AC 34 ms
52,612 KB
testcase_06 AC 34 ms
52,820 KB
testcase_07 AC 35 ms
53,564 KB
testcase_08 AC 39 ms
52,608 KB
testcase_09 AC 46 ms
64,024 KB
testcase_10 AC 56 ms
70,596 KB
testcase_11 AC 41 ms
59,692 KB
testcase_12 AC 49 ms
65,168 KB
testcase_13 AC 50 ms
64,988 KB
testcase_14 AC 51 ms
66,160 KB
testcase_15 AC 52 ms
69,060 KB
testcase_16 AC 44 ms
63,056 KB
testcase_17 AC 56 ms
68,912 KB
testcase_18 AC 60 ms
73,684 KB
testcase_19 AC 58 ms
72,172 KB
testcase_20 AC 56 ms
69,156 KB
testcase_21 AC 57 ms
70,172 KB
testcase_22 AC 58 ms
71,392 KB
testcase_23 AC 60 ms
74,400 KB
testcase_24 AC 62 ms
73,496 KB
testcase_25 AC 57 ms
74,088 KB
testcase_26 AC 62 ms
73,116 KB
testcase_27 AC 60 ms
73,744 KB
testcase_28 AC 56 ms
73,372 KB
testcase_29 AC 61 ms
73,520 KB
testcase_30 AC 60 ms
74,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,I = map(int,input().split())
SA = [list(map(int,input().split())) for _ in range(N)]
dp = [0] * (I+1)
for s,a in SA:
    for i in reversed(range(I-s+1)):
        dp[i+s] = max(dp[i+s],dp[i] + a)
print(dp[-1])


0