結果

問題 No.2492 Knapsack Problem?
ユーザー やでな@競プロやでな@競プロ
提出日時 2023-10-08 16:44:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 63,516 KB
最終ジャッジ日時 2024-07-26 18:08:57
合計ジャッジ時間 1,209 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,188 KB
testcase_01 AC 36 ms
52,332 KB
testcase_02 AC 37 ms
52,880 KB
testcase_03 AC 38 ms
52,000 KB
testcase_04 AC 38 ms
52,212 KB
testcase_05 AC 34 ms
52,460 KB
testcase_06 AC 43 ms
54,720 KB
testcase_07 AC 41 ms
55,328 KB
testcase_08 AC 42 ms
54,684 KB
testcase_09 AC 52 ms
63,516 KB
testcase_10 AC 50 ms
62,028 KB
testcase_11 AC 50 ms
62,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,w = map(int,input().split())

lis = []
for i in range(n):
    vi,wi = map(int,input().split())
    lis.append([vi,wi])
    
lis.sort(reverse = True)

for i,j in lis:
    if j <= w:
        print(i)
        exit()
        
print(-1)
0