結果
問題 | No.1046 Fruits Rush |
ユーザー | penqen |
提出日時 | 2020-12-16 14:25:19 |
言語 | Elixir (1.16.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 553 bytes |
コンパイル時間 | 1,446 ms |
コンパイル使用メモリ | 62,076 KB |
実行使用メモリ | 54,860 KB |
最終ジャッジ日時 | 2024-06-10 00:23:06 |
合計ジャッジ時間 | 11,339 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 530 ms
54,456 KB |
testcase_01 | AC | 544 ms
54,320 KB |
testcase_02 | AC | 569 ms
54,572 KB |
testcase_03 | AC | 546 ms
54,804 KB |
testcase_04 | AC | 532 ms
54,500 KB |
testcase_05 | AC | 535 ms
54,768 KB |
testcase_06 | AC | 537 ms
54,564 KB |
testcase_07 | AC | 536 ms
54,664 KB |
testcase_08 | AC | 538 ms
54,176 KB |
testcase_09 | AC | 537 ms
54,192 KB |
testcase_10 | AC | 544 ms
54,500 KB |
testcase_11 | AC | 551 ms
54,768 KB |
testcase_12 | AC | 544 ms
54,672 KB |
testcase_13 | AC | 535 ms
54,404 KB |
testcase_14 | AC | 544 ms
54,448 KB |
testcase_15 | WA | - |
testcase_16 | AC | 541 ms
54,460 KB |
ソースコード
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.sort(&(&1 > &2)) |> Enum.reject(&(&1 < 1)) |> (fn [] -> [t | _] = an [t] x -> x end).() |> Stream.take(k) |> Enum.reduce(0, &(&1 + &2)) end end