結果

問題 No.64 XORフィボナッチ数列
ユーザー hum_ophum_op
提出日時 2016-04-13 22:40:52
言語 F#
(F# 4.0)
結果
AC  
実行時間 313 ms / 5,000 ms
コード長 314 bytes
コンパイル時間 9,301 ms
コンパイル使用メモリ 191,616 KB
実行使用メモリ 34,756 KB
最終ジャッジ日時 2024-10-04 08:04:11
合計ジャッジ時間 14,577 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 293 ms
34,352 KB
testcase_01 AC 292 ms
33,944 KB
testcase_02 AC 294 ms
34,620 KB
testcase_03 AC 297 ms
33,944 KB
testcase_04 AC 295 ms
34,228 KB
testcase_05 AC 296 ms
34,620 KB
testcase_06 AC 313 ms
34,496 KB
testcase_07 AC 303 ms
34,364 KB
testcase_08 AC 302 ms
33,804 KB
testcase_09 AC 293 ms
34,372 KB
testcase_10 AC 291 ms
34,060 KB
testcase_11 AC 295 ms
34,352 KB
testcase_12 AC 295 ms
34,248 KB
testcase_13 AC 294 ms
34,756 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (235 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 #

open System

let No64 () =
    let IN = Console.ReadLine().Split(' ')
    let F0 = int64 <| IN.[0]
    let F1 = int64 <| IN.[1]
    let N  = int64 <| IN.[2]

    let xfib =
        [
            yield F0
            yield F1
            yield F0 ^^^ F1
        ]
    printfn "%d" xfib.[int(N % 3L)]
    ()

No64 ()
0