結果

問題 No.64 XORフィボナッチ数列
ユーザー Nobita GomuNobita Gomu
提出日時 2017-10-18 23:41:50
言語 F#
(F# 4.0)
結果
TLE  
実行時間 -
コード長 333 bytes
コンパイル時間 9,489 ms
コンパイル使用メモリ 195,540 KB
実行使用メモリ 64,072 KB
最終ジャッジ日時 2024-11-18 15:02:06
合計ジャッジ時間 37,872 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 337 ms
38,212 KB
testcase_01 AC 337 ms
64,072 KB
testcase_02 AC 340 ms
38,208 KB
testcase_03 AC 339 ms
63,940 KB
testcase_04 AC 339 ms
37,820 KB
testcase_05 AC 335 ms
43,740 KB
testcase_06 AC 335 ms
38,080 KB
testcase_07 AC 336 ms
34,760 KB
testcase_08 AC 331 ms
34,596 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 334 ms
34,368 KB
testcase_13 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (246 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 n0, n1, n =
    stdin.ReadLine ()
    |> fun s -> s.Split ' '
    |> Array.map int64
    |> fun a -> (a.[0], a.[1], a.[2])

let inline fib n =
    let rec iter pp p c =
        if c = LanguagePrimitives.GenericZero then pp
        else iter p (pp ^^^ p) (c - LanguagePrimitives.GenericOne)
    iter n0 n1 n

fib n |> printfn "%d"
0