結果

問題 No.639 An Ordinary Sequence
ユーザー taktak
提出日時 2018-04-20 15:21:02
言語 F#
(F# 4.0)
結果
AC  
実行時間 338 ms / 1,000 ms
コード長 525 bytes
コンパイル時間 11,490 ms
コンパイル使用メモリ 195,664 KB
実行使用メモリ 35,532 KB
最終ジャッジ日時 2025-01-02 02:31:20
合計ジャッジ時間 18,882 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 322 ms
35,532 KB
testcase_01 AC 322 ms
35,184 KB
testcase_02 AC 320 ms
35,104 KB
testcase_03 AC 325 ms
34,984 KB
testcase_04 AC 333 ms
35,240 KB
testcase_05 AC 331 ms
35,308 KB
testcase_06 AC 338 ms
35,364 KB
testcase_07 AC 329 ms
35,368 KB
testcase_08 AC 325 ms
35,232 KB
testcase_09 AC 333 ms
35,364 KB
testcase_10 AC 329 ms
35,248 KB
testcase_11 AC 330 ms
35,228 KB
testcase_12 AC 330 ms
34,476 KB
testcase_13 AC 325 ms
35,284 KB
testcase_14 AC 326 ms
35,240 KB
testcase_15 AC 327 ms
35,120 KB
testcase_16 AC 337 ms
35,160 KB
testcase_17 AC 334 ms
35,256 KB
testcase_18 AC 331 ms
35,284 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (296 ミリ秒)。
/home/judge/data/code/Main.fs(16,13): 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 memo f = 
    let dict = new System.Collections.Generic.Dictionary<_,_>()
    let memFunc input =
        match dict.TryGetValue input with
        | true,x -> x
        | false,_ ->
            let ans = f input
            dict.Add(input,ans)
            ans
    memFunc            
        
let rec memF =
    let f = function
       | 0L -> 1L
       | x ->
            memF (x/3L) + memF (x/5L)
    memo f                                    

let N = stdin.ReadLine() |> int64 
               
memF N |> printfn "%i"
0