結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,456 KB
testcase_01 RE -
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 RE -
testcase_05 AC 40 ms
51,456 KB
testcase_06 AC 45 ms
53,632 KB
testcase_07 AC 42 ms
53,376 KB
testcase_08 AC 41 ms
53,504 KB
testcase_09 AC 53 ms
61,696 KB
testcase_10 AC 55 ms
61,440 KB
testcase_11 AC 53 ms
61,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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