結果

問題 No.64 XORフィボナッチ数列
ユーザー noriocnorioc
提出日時 2024-08-07 22:39:18
言語 Elixir
(1.16.2)
結果
AC  
実行時間 541 ms / 5,000 ms
コード長 373 bytes
コンパイル時間 2,599 ms
コンパイル使用メモリ 62,680 KB
実行使用メモリ 54,944 KB
最終ジャッジ日時 2024-08-07 22:39:30
合計ジャッジ時間 10,998 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 509 ms
53,956 KB
testcase_01 AC 514 ms
53,888 KB
testcase_02 AC 541 ms
54,012 KB
testcase_03 AC 514 ms
54,028 KB
testcase_04 AC 513 ms
54,944 KB
testcase_05 AC 530 ms
54,024 KB
testcase_06 AC 512 ms
54,360 KB
testcase_07 AC 514 ms
53,680 KB
testcase_08 AC 540 ms
53,748 KB
testcase_09 AC 508 ms
53,856 KB
testcase_10 AC 541 ms
54,328 KB
testcase_11 AC 512 ms
54,156 KB
testcase_12 AC 534 ms
54,348 KB
testcase_13 AC 535 ms
54,348 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")

  import Bitwise

  def main do
    [f0, f1, n] = li()

    a = [f0, f1, bxor(f0, f1)]
    Enum.at(a, rem(n, 3))
    |> IO.puts
  end
end
0