結果

問題 No.64 XORフィボナッチ数列
ユーザー regeregeregerege
提出日時 2016-03-26 20:15:19
言語 F#
(F# 4.0)
結果
TLE  
実行時間 -
コード長 387 bytes
コンパイル時間 7,118 ms
コンパイル使用メモリ 195,112 KB
実行使用メモリ 61,432 KB
最終ジャッジ日時 2024-10-02 01:02:15
合計ジャッジ時間 14,803 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
37,504 KB
testcase_01 AC 97 ms
34,560 KB
testcase_02 AC 98 ms
34,432 KB
testcase_03 AC 96 ms
34,816 KB
testcase_04 AC 98 ms
34,560 KB
testcase_05 AC 99 ms
34,944 KB
testcase_06 AC 100 ms
34,680 KB
testcase_07 AC 97 ms
34,432 KB
testcase_08 AC 96 ms
34,428 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (285 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 ``No.64 XORフィボナッチ数列1``() =
    let f (s:string) =
        let arr = s.Split(' ') |> Array.map (bigint.Parse)
        let rec fib (a:bigint) b n =
            if n < 0I then a
            elif n = 0I then b
            else fib b (a^^^b) (n-1I)
        fib arr.[0] arr.[1] (arr.[2]-1I)
    f <| stdin.ReadLine() |> printfn "%A"
``No.64 XORフィボナッチ数列1``()
0