結果

問題 No.2492 Knapsack Problem?
ユーザー mymelochanmymelochan
提出日時 2023-10-06 21:27:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 592 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 64,192 KB
最終ジャッジ日時 2024-07-26 15:42:46
合計ジャッジ時間 1,178 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,116 KB
testcase_01 AC 41 ms
55,052 KB
testcase_02 AC 40 ms
54,980 KB
testcase_03 AC 39 ms
55,000 KB
testcase_04 AC 37 ms
54,900 KB
testcase_05 AC 37 ms
54,360 KB
testcase_06 AC 43 ms
55,600 KB
testcase_07 AC 41 ms
55,588 KB
testcase_08 AC 45 ms
55,428 KB
testcase_09 AC 47 ms
62,472 KB
testcase_10 AC 46 ms
64,192 KB
testcase_11 AC 48 ms
62,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#############################################################

import sys
sys.setrecursionlimit(10**7)

from heapq import heappop,heappush
from collections import deque,defaultdict,Counter
from bisect import bisect_left, bisect_right
from itertools import product,combinations,permutations

ipt = sys.stdin.readline

def iin():
    return int(ipt())
def lmin():
    return list(map(int,ipt().split()))

MOD = 998244353
#############################################################

N,W = lmin()

ans = -1
for i in range(N):
    v,w = lmin()
    if w <= W:
        ans = max(ans,v)

print(ans)
0