結果

問題 No.2492 Knapsack Problem?
ユーザー shimonohnishishimonohnishi
提出日時 2024-06-10 19:34:18
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 172 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 65,272 KB
最終ジャッジ日時 2024-06-10 19:34:20
合計ジャッジ時間 1,563 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,836 KB
testcase_01 RE -
testcase_02 AC 34 ms
52,400 KB
testcase_03 AC 32 ms
52,208 KB
testcase_04 RE -
testcase_05 AC 33 ms
52,944 KB
testcase_06 AC 41 ms
54,128 KB
testcase_07 AC 38 ms
54,912 KB
testcase_08 AC 38 ms
54,452 KB
testcase_09 AC 45 ms
61,656 KB
testcase_10 AC 45 ms
62,608 KB
testcase_11 AC 50 ms
61,724 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) if w[i] <= ww))
0