結果

問題 No.279 木の数え上げ
ユーザー gemmarogemmaro
提出日時 2020-04-14 10:51:49
言語 Elixir
(1.16.2)
結果
MLE  
実行時間 -
コード長 285 bytes
コンパイル時間 898 ms
コンパイル使用メモリ 64,092 KB
実行使用メモリ 166,688 KB
最終ジャッジ日時 2024-06-09 23:23:38
合計ジャッジ時間 20,918 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 552 ms
53,740 KB
testcase_01 AC 554 ms
53,796 KB
testcase_02 AC 551 ms
54,760 KB
testcase_03 AC 549 ms
54,212 KB
testcase_04 AC 539 ms
53,800 KB
testcase_05 AC 555 ms
54,056 KB
testcase_06 AC 540 ms
54,064 KB
testcase_07 AC 563 ms
53,756 KB
testcase_08 AC 550 ms
53,796 KB
testcase_09 AC 549 ms
54,288 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)
    |> String.to_charlist()
    |> solve
    |> IO.puts()
  end

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