結果

問題 No.279 木の数え上げ
ユーザー gemmarogemmaro
提出日時 2020-04-14 11:04:36
言語 Elixir
(1.16.2)
結果
MLE  
実行時間 -
コード長 409 bytes
コンパイル時間 982 ms
コンパイル使用メモリ 62,648 KB
実行使用メモリ 165,652 KB
最終ジャッジ日時 2024-06-09 23:23:02
合計ジャッジ時間 24,790 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 644 ms
53,928 KB
testcase_01 AC 644 ms
54,240 KB
testcase_02 AC 648 ms
53,936 KB
testcase_03 AC 646 ms
54,060 KB
testcase_04 AC 643 ms
53,924 KB
testcase_05 AC 638 ms
53,924 KB
testcase_06 AC 645 ms
54,056 KB
testcase_07 AC 640 ms
53,676 KB
testcase_08 AC 650 ms
53,752 KB
testcase_09 AC 657 ms
53,800 KB
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.read(:line)
    |> solve
    |> IO.puts()
  end

  defp solve(s) do
    s
    |> String.to_charlist()
    |> Enum.filter(&(&1 == ?t || &1 == ?r || &1 == ?e))
    |> (fn t ->
          [
            Enum.count(t, &(&1 == ?t)),
            Enum.count(t, &(&1 == ?r)),
            Enum.count(t, &(&1 == ?e)) |> div(2)
          ]
        end).()
    |> Enum.min()
  end
end
0