結果
問題 | No.526 フィボナッチ数列の第N項をMで割った余りを求める |
ユーザー | tak |
提出日時 | 2018-08-03 23:00:26 |
言語 | F# (F# 4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 609 bytes |
コンパイル時間 | 7,042 ms |
コンパイル使用メモリ | 206,344 KB |
実行使用メモリ | 238,688 KB |
最終ジャッジ日時 | 2024-09-19 17:37:56 |
合計ジャッジ時間 | 14,957 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 307 ms
37,940 KB |
testcase_01 | AC | 308 ms
36,788 KB |
testcase_02 | AC | 310 ms
34,480 KB |
testcase_03 | AC | 307 ms
34,596 KB |
testcase_04 | AC | 306 ms
34,748 KB |
testcase_05 | AC | 305 ms
34,740 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (275 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) /home/judge/data/code/Main.fs(13,17): 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/
ソースコード
let memoize f = let memo = System.Collections.Generic.Dictionary<_,_>() (fun x -> match memo.TryGetValue x with | true, v -> v | _ -> let v = f(x) in memo.Add(x,v); v) let rec fib = let modulo = Microsoft.FSharp.Core.int.MaxValue |> int64 let f = function | 0 -> 0L | 1 -> 1L | x -> (fib (x - 1) + fib (x - 2)) % modulo f |> memoize let f n m = let longM = m |> int64 let zeroIndexedN = n - 1 let a = fib zeroIndexedN a % longM let N,M = let t = stdin.ReadLine().Split() |> Array.map int t.[0], t.[1] f N M |> printfn "%i"