結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー taktak
提出日時 2018-08-04 07:32:14
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 249 bytes
コンパイル時間 10,483 ms
コンパイル使用メモリ 184,976 KB
実行使用メモリ 35,164 KB
最終ジャッジ日時 2024-09-19 17:45:29
合計ジャッジ時間 14,182 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 318 ms
34,616 KB
testcase_01 AC 312 ms
34,324 KB
testcase_02 AC 319 ms
34,608 KB
testcase_03 AC 311 ms
34,444 KB
testcase_04 AC 324 ms
34,468 KB
testcase_05 AC 319 ms
34,868 KB
testcase_06 AC 316 ms
34,484 KB
testcase_07 AC 314 ms
34,488 KB
testcase_08 AC 316 ms
35,032 KB
testcase_09 AC 313 ms
34,632 KB
testcase_10 AC 326 ms
34,784 KB
testcase_11 WA -
testcase_12 AC 378 ms
34,632 KB
testcase_13 WA -
testcase_14 AC 377 ms
34,744 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (303 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
        | 0 -> a
        | _ -> loop (n - 1) b ((a + b) % m)
    loop n 0 1


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

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