結果

問題 No.2492 Knapsack Problem?
ユーザー noriocnorioc
提出日時 2024-08-28 03:58:04
言語 Elixir
(1.16.2)
結果
AC  
実行時間 573 ms / 2,000 ms
コード長 482 bytes
コンパイル時間 2,663 ms
コンパイル使用メモリ 62,688 KB
実行使用メモリ 55,272 KB
最終ジャッジ日時 2024-08-28 03:58:16
合計ジャッジ時間 8,999 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 507 ms
55,272 KB
testcase_01 AC 538 ms
53,876 KB
testcase_02 AC 508 ms
54,132 KB
testcase_03 AC 543 ms
54,320 KB
testcase_04 AC 526 ms
53,744 KB
testcase_05 AC 503 ms
54,120 KB
testcase_06 AC 535 ms
54,236 KB
testcase_07 AC 515 ms
54,000 KB
testcase_08 AC 524 ms
54,140 KB
testcase_09 AC 573 ms
54,120 KB
testcase_10 AC 563 ms
54,172 KB
testcase_11 AC 572 ms
54,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def input, do: IO.read(:line) |> String.trim
  def ii, do: input() |> String.to_integer
  def li, do: input() |> String.split |> Enum.map(&String.to_integer/1)
  def yn(b), do: IO.puts(if b, do: "Yes", else: "No")

  def main do
    [n, wlimit] = li()

    for _ <- 1..n do
      [v, w] = li()
      {v, w}
    end
    |> Enum.filter(fn {_, w} -> w <= wlimit end)
    |> Enum.map(fn {v, _} -> v end)
    |> Enum.max(&>=/2, fn -> -1 end)
    |> IO.puts
  end
end
0