結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 627 ms
54,124 KB
testcase_01 AC 648 ms
55,392 KB
testcase_02 AC 667 ms
53,864 KB
testcase_03 AC 640 ms
54,108 KB
testcase_04 AC 633 ms
54,632 KB
testcase_05 AC 654 ms
54,660 KB
testcase_06 AC 635 ms
54,464 KB
testcase_07 AC 634 ms
54,400 KB
testcase_08 AC 644 ms
54,332 KB
testcase_09 AC 645 ms
54,640 KB
testcase_10 MLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

  defp solve(s) do
    s
    |> String.replace(~r/[^tre]/, "")
    |> String.to_charlist()
    |> (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