結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー taktak
提出日時 2018-08-04 07:33:16
言語 F#
(F# 4.0)
結果
AC  
実行時間 393 ms / 2,000 ms
コード長 256 bytes
コンパイル時間 6,980 ms
コンパイル使用メモリ 185,864 KB
実行使用メモリ 35,052 KB
最終ジャッジ日時 2024-09-19 17:45:42
合計ジャッジ時間 12,347 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 317 ms
34,884 KB
testcase_01 AC 317 ms
34,628 KB
testcase_02 AC 321 ms
34,756 KB
testcase_03 AC 320 ms
34,756 KB
testcase_04 AC 318 ms
34,616 KB
testcase_05 AC 321 ms
34,884 KB
testcase_06 AC 318 ms
34,760 KB
testcase_07 AC 319 ms
34,880 KB
testcase_08 AC 321 ms
35,052 KB
testcase_09 AC 324 ms
35,052 KB
testcase_10 AC 333 ms
34,240 KB
testcase_11 AC 393 ms
34,768 KB
testcase_12 AC 393 ms
35,044 KB
testcase_13 AC 387 ms
34,780 KB
testcase_14 AC 387 ms
35,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (244 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 fib n m =
    let rec loop n a b =
        match n with
        | 0L -> a
        | _  -> loop (n - 1L) b ((a + b) % m)
    loop n 0L 1L

let N,M =
    let t = stdin.ReadLine().Split() |> Array.map int64
    t.[0], t.[1]

fib (N - 1L) M |> printfn "%i"
0