結果
問題 | No.2093 Shio Ramen |
ユーザー | kys |
提出日時 | 2022-10-07 21:26:08 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 51 ms / 2,000 ms |
コード長 | 1,072 bytes |
コンパイル時間 | 259 ms |
コンパイル使用メモリ | 82,280 KB |
実行使用メモリ | 62,080 KB |
最終ジャッジ日時 | 2024-06-12 05:54:20 |
合計ジャッジ時間 | 2,714 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 30 |
ソースコード
def main(): from sys import stdin, setrecursionlimit # setrecursionlimit(1000000) input = stdin.readline def iinput(): return int(input()) def sinput(): return input().rstrip() def i0input(): return int(input()) - 1 def linput(): return list(input().split()) def liinput(): return list(map(int, input().split())) def miinput(): return map(int, input().split()) def li0input(): return list(map(lambda x: int(x) - 1, input().split())) def mi0input(): return map(lambda x: int(x) - 1, input().split()) INF = 1000000000000000000 MOD = 1000000007 # i番目の重みws[i], 価値vs[i] def solve(N, W, ws, vs): dp = [0] * (W+1) for i in range(N): # 価値v, 重さw v = vs[i]; w = ws[i] for j in range(W, w-1, -1): dp[j] = max(dp[j-w] + v, dp[j]) return max(dp) N, W = miinput() vs = [] ws = [] for _ in [0] * N: w, v = miinput() vs.append(v) ws.append(w) print(solve(N, W, ws, vs)) main()