結果

問題 No.1992 Tendon Walk
ユーザー noriocnorioc
提出日時 2024-08-18 04:26:07
言語 Elixir
(1.16.2)
結果
AC  
実行時間 698 ms / 2,000 ms
コード長 656 bytes
コンパイル時間 2,125 ms
コンパイル使用メモリ 61,524 KB
実行使用メモリ 54,664 KB
最終ジャッジ日時 2024-08-18 04:26:18
合計ジャッジ時間 10,007 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 667 ms
54,256 KB
testcase_01 AC 698 ms
54,192 KB
testcase_02 AC 652 ms
54,664 KB
testcase_03 AC 668 ms
53,804 KB
testcase_04 AC 663 ms
54,436 KB
testcase_05 AC 680 ms
54,392 KB
testcase_06 AC 654 ms
54,332 KB
testcase_07 AC 682 ms
54,184 KB
testcase_08 AC 663 ms
54,352 KB
権限があれば一括ダウンロードができます

ソースコード

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
    {_, d} = loop(s, {0, 0}, pred, next)
    IO.puts d
  end

  def loop(stream, acc, pred, next) do
    x = Enum.take(stream, 1) |> hd
    a = next.(acc, x)
    if pred.(a) do
      a
    else
      loop(Stream.drop(stream, 1), a, pred, next)
    end
  end
end
0