結果

問題 No.2093 Shio Ramen
ユーザー tohohogisutohohogisu
提出日時 2022-10-05 20:04:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 84,296 KB
最終ジャッジ日時 2025-01-02 17:57:54
合計ジャッジ時間 4,060 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,156 KB
testcase_01 AC 40 ms
52,344 KB
testcase_02 AC 38 ms
52,812 KB
testcase_03 AC 39 ms
52,192 KB
testcase_04 AC 43 ms
51,896 KB
testcase_05 AC 39 ms
52,412 KB
testcase_06 AC 39 ms
52,468 KB
testcase_07 AC 39 ms
52,296 KB
testcase_08 AC 40 ms
52,164 KB
testcase_09 AC 70 ms
65,504 KB
testcase_10 AC 80 ms
72,896 KB
testcase_11 AC 55 ms
62,336 KB
testcase_12 AC 64 ms
67,812 KB
testcase_13 AC 64 ms
67,740 KB
testcase_14 AC 67 ms
68,372 KB
testcase_15 AC 77 ms
71,260 KB
testcase_16 AC 60 ms
65,688 KB
testcase_17 AC 74 ms
70,560 KB
testcase_18 AC 99 ms
83,804 KB
testcase_19 AC 84 ms
74,096 KB
testcase_20 AC 77 ms
72,220 KB
testcase_21 AC 79 ms
73,008 KB
testcase_22 AC 81 ms
72,708 KB
testcase_23 AC 99 ms
83,936 KB
testcase_24 AC 102 ms
83,952 KB
testcase_25 AC 98 ms
84,176 KB
testcase_26 AC 104 ms
84,156 KB
testcase_27 AC 103 ms
84,096 KB
testcase_28 AC 103 ms
83,964 KB
testcase_29 AC 99 ms
84,296 KB
testcase_30 AC 104 ms
84,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,w = map(int, input().split())
weight,value = [],[]
dp = [[0 for i in range(w + 1)] for i in range(n + 1)]
for i in range(n):
  a,b = map(int, input().split())
  weight.append(a)
  value.append(b)
for i in range(n + 1):
  for j in range(w + 1):
    if i == 0 or j == 0:
      dp[i][j] = 0
    elif weight[i - 1] <= j:
      dp[i][j] = max(value[i - 1] + dp[i - 1][j - weight[i - 1]], dp[i - 1][j])
    else:
      dp[i][j] = dp[i - 1][j]
print(dp[n][w])
0