結果

問題 No.2492 Knapsack Problem?
ユーザー shimonohnishishimonohnishi
提出日時 2024-06-10 19:34:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 176 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 63,028 KB
最終ジャッジ日時 2024-06-10 19:34:46
合計ジャッジ時間 1,311 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,832 KB
testcase_01 AC 36 ms
52,604 KB
testcase_02 AC 37 ms
52,856 KB
testcase_03 AC 36 ms
52,540 KB
testcase_04 AC 35 ms
52,120 KB
testcase_05 AC 36 ms
53,208 KB
testcase_06 AC 44 ms
54,988 KB
testcase_07 AC 44 ms
55,324 KB
testcase_08 AC 44 ms
54,408 KB
testcase_09 AC 56 ms
61,280 KB
testcase_10 AC 54 ms
62,664 KB
testcase_11 AC 56 ms
63,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, ww = map(int, input().split())
v, w = map(list, zip(*[map(int, input().split()) for _ in range(n)]))
v += [-1]
w += [-1]
print(max(v[i] for i in range(n + 1) if w[i] <= ww))
0