結果

問題 No.1046 Fruits Rush
ユーザー penqenpenqen
提出日時 2020-12-16 14:27:18
言語 Elixir
(1.16.2)
結果
AC  
実行時間 559 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 1,024 ms
コンパイル使用メモリ 63,020 KB
実行使用メモリ 54,784 KB
最終ジャッジ日時 2024-06-10 00:23:22
合計ジャッジ時間 11,366 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 542 ms
54,448 KB
testcase_01 AC 551 ms
54,384 KB
testcase_02 AC 548 ms
54,524 KB
testcase_03 AC 544 ms
54,236 KB
testcase_04 AC 549 ms
54,784 KB
testcase_05 AC 559 ms
54,536 KB
testcase_06 AC 556 ms
54,324 KB
testcase_07 AC 533 ms
54,512 KB
testcase_08 AC 533 ms
54,580 KB
testcase_09 AC 542 ms
54,264 KB
testcase_10 AC 536 ms
54,484 KB
testcase_11 AC 543 ms
54,408 KB
testcase_12 AC 537 ms
54,216 KB
testcase_13 AC 543 ms
54,364 KB
testcase_14 AC 529 ms
54,580 KB
testcase_15 AC 539 ms
54,460 KB
testcase_16 AC 535 ms
54,528 KB
権限があれば一括ダウンロードができます

ソースコード

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 = an |> Enum.sort(&(&1 > &2))

    an
    |> Enum.reject(&(&1 < 1))
    |> (fn
      [] ->
        [t | _] = an
        [t]
      x ->
        x
    end).()
    |> Stream.take(k)
    |> Enum.reduce(0, &(&1 + &2))
  end

end
0