結果

問題 No.1046 Fruits Rush
ユーザー penqenpenqen
提出日時 2020-12-16 14:16:22
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 448 bytes
コンパイル時間 1,395 ms
コンパイル使用メモリ 64,720 KB
実行使用メモリ 57,540 KB
最終ジャッジ日時 2024-06-10 00:22:51
合計ジャッジ時間 11,554 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 531 ms
54,560 KB
testcase_01 AC 538 ms
54,448 KB
testcase_02 AC 553 ms
54,196 KB
testcase_03 AC 557 ms
54,244 KB
testcase_04 AC 533 ms
54,376 KB
testcase_05 AC 544 ms
54,544 KB
testcase_06 AC 540 ms
54,452 KB
testcase_07 AC 545 ms
54,192 KB
testcase_08 AC 542 ms
54,456 KB
testcase_09 AC 562 ms
54,444 KB
testcase_10 AC 539 ms
54,448 KB
testcase_11 AC 534 ms
54,800 KB
testcase_12 AC 549 ms
54,440 KB
testcase_13 AC 545 ms
54,348 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  
  def main do
    [n, k] = IO.read(:line) |> String.trim() |> String.split(" ") |> Enum.map(&String.to_integer/1)
    an = IO.read(:line) |> String.trim() |> String.split(" ") |> Enum.map(&String.to_integer/1)
    solve(n, k, an) |> IO.puts()
  end

  def solve(n, k, an) when 1 <= k and k <= n and n <= 100 do
    an |> Enum.reject(&(&1 < 1)) |> Enum.sort(&(&1 > &2)) |> Stream.take(k) |> Enum.reduce(0, &(&1 + &2))
  end

end
0