結果

問題 No.64 XORフィボナッチ数列
ユーザー taktak
提出日時 2019-02-10 17:51:19
言語 F#
(F# 4.0)
結果
TLE  
実行時間 -
コード長 286 bytes
コンパイル時間 8,224 ms
コンパイル使用メモリ 188,892 KB
実行使用メモリ 63,892 KB
最終ジャッジ日時 2024-07-06 14:31:15
合計ジャッジ時間 16,136 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 321 ms
37,816 KB
testcase_01 AC 301 ms
63,892 KB
testcase_02 AC 302 ms
34,748 KB
testcase_03 AC 300 ms
34,888 KB
testcase_04 AC 297 ms
34,504 KB
testcase_05 AC 304 ms
34,196 KB
testcase_06 AC 302 ms
34,756 KB
testcase_07 AC 296 ms
34,208 KB
testcase_08 AC 298 ms
34,628 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (239 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 f0 f1
|> printfn "%i"
0