結果

問題 No.2093 Shio Ramen
ユーザー roarisroaris
提出日時 2022-10-07 21:23:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 329 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 83,712 KB
最終ジャッジ日時 2024-06-12 05:47:18
合計ジャッジ時間 3,604 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 40 ms
51,456 KB
testcase_05 AC 40 ms
51,456 KB
testcase_06 AC 42 ms
51,968 KB
testcase_07 AC 41 ms
51,712 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 69 ms
67,456 KB
testcase_13 AC 67 ms
66,304 KB
testcase_14 AC 69 ms
67,072 KB
testcase_15 WA -
testcase_16 AC 71 ms
67,840 KB
testcase_17 AC 71 ms
67,968 KB
testcase_18 WA -
testcase_19 AC 83 ms
71,424 KB
testcase_20 WA -
testcase_21 AC 80 ms
70,144 KB
testcase_22 AC 78 ms
70,144 KB
testcase_23 WA -
testcase_24 AC 92 ms
75,520 KB
testcase_25 AC 93 ms
74,496 KB
testcase_26 AC 93 ms
74,496 KB
testcase_27 WA -
testcase_28 AC 104 ms
83,712 KB
testcase_29 WA -
testcase_30 AC 93 ms
74,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, I = map(int, input().split())
dp = [[-10**18]*(I+1) for _ in range(N+1)]
dp[0][0] = 0

for i in range(N):
    s, a = map(int, input().split())
    
    for j in range(I+1):
        dp[i+1][j] = max(dp[i+1][j], dp[i][j])
        
        if j+s<=I:
            dp[i+1][j+s] = max(dp[i+1][j+s], dp[i][j]+a)
    
print(dp[-1][I])
0