結果

問題 No.279 木の数え上げ
ユーザー gemmarogemmaro
提出日時 2020-04-19 22:46:53
言語 Elixir
(1.16.2)
結果
AC  
実行時間 1,307 ms / 2,000 ms
コード長 667 bytes
コンパイル時間 967 ms
コンパイル使用メモリ 63,468 KB
実行使用メモリ 56,232 KB
最終ジャッジ日時 2024-06-09 23:46:17
合計ジャッジ時間 19,973 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 551 ms
54,224 KB
testcase_01 AC 541 ms
53,864 KB
testcase_02 AC 544 ms
53,992 KB
testcase_03 AC 534 ms
54,360 KB
testcase_04 AC 532 ms
54,220 KB
testcase_05 AC 529 ms
54,624 KB
testcase_06 AC 531 ms
54,536 KB
testcase_07 AC 536 ms
54,372 KB
testcase_08 AC 542 ms
54,268 KB
testcase_09 AC 545 ms
54,000 KB
testcase_10 AC 1,202 ms
56,232 KB
testcase_11 AC 705 ms
54,116 KB
testcase_12 AC 1,181 ms
54,800 KB
testcase_13 AC 653 ms
54,492 KB
testcase_14 AC 1,189 ms
56,056 KB
testcase_15 AC 1,106 ms
54,688 KB
testcase_16 AC 1,100 ms
55,044 KB
testcase_17 AC 1,307 ms
54,364 KB
testcase_18 AC 949 ms
53,864 KB
testcase_19 AC 1,134 ms
54,632 KB
testcase_20 AC 1,298 ms
54,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    input_solve()
    |> IO.puts()
  end

  def input_solve() do
    input_solve_rec([0, 0, 0])
    |> (fn [a, b, c] -> [a, b, c |> div(2)] end).()
    |> Enum.min()
  end

  def input_solve_rec(result) do
    case IO.read(1000) do
      :eof -> result
      s -> input_solve_rec(count_tre(s |> String.to_charlist(), result))
    end
  end

  defp count_tre([], [t, r, e]) do
    [t, r, e]
  end

  defp count_tre(s, [t, r, e]) do
    tl(s)
    |> count_tre(
      cond do
        hd(s) == ?t -> [t + 1, r, e]
        hd(s) == ?r -> [t, r + 1, e]
        hd(s) == ?e -> [t, r, e + 1]
        true -> [t, r, e]
      end
    )
  end
end
0