結果

問題 No.64 XORフィボナッチ数列
ユーザー taktak
提出日時 2019-02-10 17:54:49
言語 F#
(F# 4.0)
結果
AC  
実行時間 341 ms / 5,000 ms
コード長 291 bytes
コンパイル時間 13,602 ms
コンパイル使用メモリ 189,168 KB
実行使用メモリ 34,880 KB
最終ジャッジ日時 2024-07-06 14:34:57
合計ジャッジ時間 19,521 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
34,756 KB
testcase_01 AC 339 ms
34,632 KB
testcase_02 AC 341 ms
34,636 KB
testcase_03 AC 339 ms
34,880 KB
testcase_04 AC 338 ms
33,948 KB
testcase_05 AC 341 ms
34,628 KB
testcase_06 AC 340 ms
34,752 KB
testcase_07 AC 339 ms
34,632 KB
testcase_08 AC 340 ms
34,632 KB
testcase_09 AC 338 ms
34,624 KB
testcase_10 AC 339 ms
34,756 KB
testcase_11 AC 340 ms
34,628 KB
testcase_12 AC 341 ms
34,072 KB
testcase_13 AC 338 ms
34,060 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (318 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

let xorFib n f0 f1 =
  let rec f n ``f_n-2`` ``f_n-1`` =
    match n with
    | 0L -> ``f_n-2``
    | _ -> f (n-1L) ``f_n-1`` (``f_n-2``^^^``f_n-1``)
  f n f0 f1

let f0, f1, n =
  let t = stdin.ReadLine().Split() |> Array.map int64
  t.[0], t.[1], t.[2]

xorFib (n%3L) f0 f1
|> printfn "%i"
0