結果

問題 No.2492 Knapsack Problem?
ユーザー Merry-AmorMerry-Amor
提出日時 2023-10-14 19:52:04
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 315 bytes
コンパイル時間 542 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-09-16 13:45:57
合計ジャッジ時間 3,242 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,160 KB
testcase_01 WA -
testcase_02 AC 88 ms
12,032 KB
testcase_03 AC 90 ms
12,160 KB
testcase_04 WA -
testcase_05 AC 87 ms
12,160 KB
testcase_06 AC 90 ms
12,032 KB
testcase_07 AC 88 ms
12,160 KB
testcase_08 AC 87 ms
12,160 KB
testcase_09 AC 91 ms
12,032 KB
testcase_10 AC 91 ms
12,032 KB
testcase_11 AC 90 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:10: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Main.rb:3: warning: assigned but unused variable - i
Syntax OK

ソースコード

diff #

input_line = gets.chomp!.split(' ').map{|n| n.to_i}
v_line = []
for i in 1..input_line[0]
        input_line2 = gets.chomp!.split(' ').map{|n| n.to_i}
        if input_line2[1] <= input_line[1] then
                v_line.push(input_line2[0])
        end
end
if v_line == [] then
        puts -1
end
puts v_line.max
0