結果

問題 No.2093 Shio Ramen
ユーザー kept1994kept1994
提出日時 2022-11-03 17:18:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 614 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 84,148 KB
最終ジャッジ日時 2024-07-18 01:48:52
合計ジャッジ時間 3,173 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,352 KB
testcase_01 AC 33 ms
51,968 KB
testcase_02 AC 35 ms
51,712 KB
testcase_03 AC 32 ms
52,096 KB
testcase_04 AC 33 ms
51,712 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 36 ms
51,840 KB
testcase_08 AC 36 ms
52,480 KB
testcase_09 AC 52 ms
66,176 KB
testcase_10 AC 71 ms
72,064 KB
testcase_11 AC 50 ms
62,848 KB
testcase_12 AC 54 ms
66,688 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 66 ms
70,400 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 88 ms
83,536 KB
testcase_19 WA -
testcase_20 AC 66 ms
71,936 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 86 ms
83,536 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 94 ms
83,968 KB
testcase_28 AC 96 ms
83,712 KB
testcase_29 AC 89 ms
84,148 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
INF = 10 ** 16
def main():
    N, I = map(int, input().split())
    dp = [[-INF] * (I + 1) for _ in range(N + 1)]
    dp[0][0] = 0
    ramen = []
    for _ in range(N):
        s, a = map(int, input().split())
        ramen.append((s, a))
    for i in range(N):
        for j in range(I):
            s, a = ramen[i]
            if dp[i][j] == -INF:
                continue
            dp[i + 1][j] = max(dp[i + 1][j], dp[i][j])
            if j + s < I + 1:
                dp[i + 1][j + s] = max(dp[i + 1][j + s], dp[i][j] + a)
    print(max(dp[-1]))
if __name__ == '__main__':
    main()
0