結果

問題 No.2093 Shio Ramen
ユーザー tnogamitnogami
提出日時 2022-10-08 14:17:32
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,124 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 19,584 KB
最終ジャッジ日時 2024-06-22 16:59:15
合計ジャッジ時間 16,380 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 154 ms
12,032 KB
testcase_10 AC 757 ms
17,024 KB
testcase_11 AC 68 ms
11,136 KB
testcase_12 AC 109 ms
11,520 KB
testcase_13 AC 63 ms
11,136 KB
testcase_14 AC 103 ms
11,520 KB
testcase_15 AC 550 ms
15,360 KB
testcase_16 AC 227 ms
12,544 KB
testcase_17 AC 150 ms
11,904 KB
testcase_18 AC 1,080 ms
19,584 KB
testcase_19 AC 697 ms
16,384 KB
testcase_20 AC 389 ms
13,824 KB
testcase_21 AC 508 ms
14,848 KB
testcase_22 AC 485 ms
14,848 KB
testcase_23 AC 1,102 ms
19,072 KB
testcase_24 AC 1,124 ms
19,200 KB
testcase_25 AC 1,121 ms
19,328 KB
testcase_26 AC 1,090 ms
19,328 KB
testcase_27 AC 1,084 ms
19,072 KB
testcase_28 AC 1,102 ms
19,200 KB
testcase_29 AC 1,090 ms
19,328 KB
testcase_30 AC 1,096 ms
19,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, I = map(int, input().split())
ramens = [tuple(map(int, input().split())) for _ in range(N)]

dp = [[0]*(I+1) for _ in range(N+1)]

for n in range(N):
    sio, aji = ramens[n]
    for i in range(I+1):
        dp[n+1][i] = max(dp[n+1][i], dp[n][i])
        if I < i + sio: continue
        dp[n+1][i+sio] = max(dp[n+1][i+sio], dp[n][i]+aji)

print(max(dp[N]))
0