結果

問題 No.2093 Shio Ramen
ユーザー ThetaTheta
提出日時 2022-10-11 17:16:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 741 ms / 2,000 ms
コード長 804 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 19,584 KB
最終ジャッジ日時 2024-06-25 12:23:05
合計ジャッジ時間 10,905 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 105 ms
11,904 KB
testcase_10 AC 512 ms
16,640 KB
testcase_11 AC 53 ms
11,008 KB
testcase_12 AC 83 ms
11,520 KB
testcase_13 AC 52 ms
11,136 KB
testcase_14 AC 77 ms
11,648 KB
testcase_15 AC 368 ms
14,976 KB
testcase_16 AC 148 ms
12,160 KB
testcase_17 AC 109 ms
12,032 KB
testcase_18 AC 736 ms
19,072 KB
testcase_19 AC 462 ms
15,744 KB
testcase_20 AC 261 ms
13,696 KB
testcase_21 AC 347 ms
14,592 KB
testcase_22 AC 335 ms
14,592 KB
testcase_23 AC 725 ms
19,456 KB
testcase_24 AC 729 ms
19,456 KB
testcase_25 AC 737 ms
19,456 KB
testcase_26 AC 731 ms
19,584 KB
testcase_27 AC 732 ms
19,456 KB
testcase_28 AC 739 ms
19,456 KB
testcase_29 AC 741 ms
19,456 KB
testcase_30 AC 735 ms
19,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N, I = map(int, input().split())
    salt_taste_list = []
    for _ in range(N):
        salt_taste_list.append(tuple(map(int, input().split())))

    salt_taste_dp_table = [[0 for _ in range(I+1)] for _ in range(N+1)]
    for n in range(1, N+1):
        for i in range(1, I+1):
            salt_taste_dp_table[n][i] = max(
                salt_taste_dp_table[n][i-1],
                salt_taste_dp_table[n-1][i]
            )
            if i - salt_taste_list[n-1][0] >= 0:
                salt_taste_dp_table[n][i] = max(
                    salt_taste_dp_table[n][i],
                    salt_taste_dp_table[n-1][i - salt_taste_list[n-1][0]]
                    + salt_taste_list[n-1][1]
                )

    print(salt_taste_dp_table[N][I])


if __name__ == "__main__":
    main()
0