結果

問題 No.1992 Tendon Walk
ユーザー noriocnorioc
提出日時 2024-08-18 04:11:15
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 868 bytes
コンパイル時間 1,845 ms
コンパイル使用メモリ 60,828 KB
実行使用メモリ 54,964 KB
最終ジャッジ日時 2024-08-18 04:11:25
合計ジャッジ時間 10,040 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def input, do: IO.read(:line) |> String.trim
  def ii, do: input() |> String.to_integer
  def li, do: input() |> String.split |> Enum.map(&String.to_integer/1)
  def yn(b), do: IO.puts(if b, do: "Yes", else: "No")

  def main do
    x = ii()

    s = Stream.cycle([2, 2, -1, -1, 2, -1, -1])

    pred = fn {p, _d} -> p == x end
    next = fn {p, d}, x -> {p+x, d+abs(x)} end
    rec(s, {0, 0}, pred, next)
    |> then(fn {_p, d} -> d end)
    |> IO.puts
  end

  def rec(s, acc, pred, next) do
    IO.inspect {:rec, acc}
    x = Enum.take(s, 1) |> hd
    a = next.(acc, x)
    if pred.(a) do
      a
    else
      rec(Stream.drop(s, 1), a, pred, next)
    end
  end

  def f(s, p, d, x) do
    t = Enum.take(s, 1) |> hd
    p2 = p + t
    d2 = d + abs(t)
    if p2 == x do
      d2
    else
      f(Stream.drop(s, 1), p2, d2, x)
    end
  end
end
0