結果

問題 No.1992 Tendon Walk
ユーザー noriocnorioc
提出日時 2024-08-18 03:49:14
言語 Elixir
(1.16.2)
結果
AC  
実行時間 627 ms / 2,000 ms
コード長 531 bytes
コンパイル時間 2,580 ms
コンパイル使用メモリ 62,268 KB
実行使用メモリ 54,540 KB
最終ジャッジ日時 2024-08-18 03:49:24
合計ジャッジ時間 9,396 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 574 ms
54,056 KB
testcase_01 AC 607 ms
54,388 KB
testcase_02 AC 581 ms
54,540 KB
testcase_03 AC 606 ms
54,528 KB
testcase_04 AC 591 ms
54,464 KB
testcase_05 AC 603 ms
54,136 KB
testcase_06 AC 571 ms
54,332 KB
testcase_07 AC 576 ms
54,136 KB
testcase_08 AC 627 ms
54,308 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])
    f(s, 0, 0, x)
    |> IO.puts
  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