結果
問題 | No.64 XORフィボナッチ数列 |
ユーザー | Nobita Gomu |
提出日時 | 2017-10-18 23:41:50 |
言語 | F# (F# 4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 333 bytes |
コンパイル時間 | 8,228 ms |
コンパイル使用メモリ | 193,968 KB |
実行使用メモリ | 37,956 KB |
最終ジャッジ日時 | 2024-04-29 11:58:02 |
合計ジャッジ時間 | 18,140 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 323 ms
37,956 KB |
testcase_01 | AC | 324 ms
34,496 KB |
testcase_02 | AC | 325 ms
34,752 KB |
testcase_03 | AC | 322 ms
34,620 KB |
testcase_04 | AC | 328 ms
34,628 KB |
testcase_05 | AC | 318 ms
34,364 KB |
testcase_06 | AC | 318 ms
33,944 KB |
testcase_07 | AC | 325 ms
34,372 KB |
testcase_08 | AC | 321 ms
34,368 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (261 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/
ソースコード
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"