結果

問題 No.279 木の数え上げ
ユーザー gemmarogemmaro
提出日時 2020-04-19 22:46:53
言語 Elixir
(1.18.1)
結果
AC  
実行時間 1,027 ms / 2,000 ms
コード長 667 bytes
コンパイル時間 1,027 ms
コンパイル使用メモリ 62,760 KB
実行使用メモリ 57,284 KB
最終ジャッジ日時 2024-12-31 04:31:19
合計ジャッジ時間 18,229 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 550 ms
54,292 KB
testcase_01 AC 551 ms
54,372 KB
testcase_02 AC 552 ms
54,048 KB
testcase_03 AC 554 ms
53,644 KB
testcase_04 AC 545 ms
54,328 KB
testcase_05 AC 549 ms
54,296 KB
testcase_06 AC 544 ms
54,376 KB
testcase_07 AC 547 ms
55,376 KB
testcase_08 AC 542 ms
55,368 KB
testcase_09 AC 550 ms
53,992 KB
testcase_10 AC 983 ms
57,284 KB
testcase_11 AC 636 ms
55,432 KB
testcase_12 AC 829 ms
55,024 KB
testcase_13 AC 593 ms
53,984 KB
testcase_14 AC 1,017 ms
55,820 KB
testcase_15 AC 934 ms
55,312 KB
testcase_16 AC 904 ms
54,996 KB
testcase_17 AC 1,006 ms
55,308 KB
testcase_18 AC 752 ms
55,980 KB
testcase_19 AC 985 ms
55,640 KB
testcase_20 AC 1,027 ms
55,280 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