結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー taktak
提出日時 2018-05-25 02:19:38
言語 F#
(F# 4.0)
結果
TLE  
実行時間 -
コード長 455 bytes
コンパイル時間 8,675 ms
コンパイル使用メモリ 197,796 KB
実行使用メモリ 224,524 KB
最終ジャッジ日時 2024-06-28 17:51:30
合計ジャッジ時間 16,012 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 297 ms
37,908 KB
testcase_01 AC 293 ms
35,220 KB
testcase_02 AC 297 ms
34,580 KB
testcase_03 AC 295 ms
34,712 KB
testcase_04 AC 296 ms
34,452 KB
testcase_05 AC 301 ms
35,108 KB
testcase_06 AC 299 ms
34,708 KB
testcase_07 AC 302 ms
34,716 KB
testcase_08 AC 306 ms
36,492 KB
testcase_09 AC 354 ms
52,992 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (254 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(15,11): warning FS0040: 定義されるオブジェクトに対するこの再帰参照および他の再帰参照は、遅延参照を使用して、実行時に初期化の正常性がチェックされます。これは、再帰関数ではなく、1 つまたは複数の再帰オブジェクトを定義しているためです。この警告を抑制するには、'#nowarn "40"' または '--nowarn:40' を使用してください。 [/home/judge/data/code/main.fsproj]
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

let memoize fn =
  let cache = new System.Collections.Generic.Dictionary<_,_>()
  (fun x ->
    match cache.TryGetValue x with
    | true, v -> v
    | false, _ -> let v = fn (x)
                  cache.Add(x,v)
                  v)
   
let N,M = let t = stdin.ReadLine().Split() |> Array.map int in t.[0],t.[1]

let rec fib = memoize (fun n -> 
    if   n <= 1 then 0 
    elif n  = 2 then 1 
    else (fib (n-1) + fib (n-2)) % M)

fib N |> printfn "%i"
0