結果

問題 No.639 An Ordinary Sequence
ユーザー taktak
提出日時 2018-04-20 15:21:02
言語 F#
(F# 4.0)
結果
AC  
実行時間 333 ms / 1,000 ms
コード長 525 bytes
コンパイル時間 12,433 ms
コンパイル使用メモリ 197,220 KB
実行使用メモリ 35,156 KB
最終ジャッジ日時 2024-06-10 12:59:43
合計ジャッジ時間 19,574 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 333 ms
34,664 KB
testcase_01 AC 313 ms
34,792 KB
testcase_02 AC 310 ms
34,612 KB
testcase_03 AC 318 ms
34,612 KB
testcase_04 AC 314 ms
35,156 KB
testcase_05 AC 307 ms
34,720 KB
testcase_06 AC 314 ms
34,356 KB
testcase_07 AC 303 ms
34,500 KB
testcase_08 AC 304 ms
34,476 KB
testcase_09 AC 324 ms
34,244 KB
testcase_10 AC 323 ms
34,492 KB
testcase_11 AC 309 ms
34,500 KB
testcase_12 AC 325 ms
34,380 KB
testcase_13 AC 313 ms
34,252 KB
testcase_14 AC 312 ms
34,380 KB
testcase_15 AC 323 ms
34,636 KB
testcase_16 AC 329 ms
34,544 KB
testcase_17 AC 316 ms
34,584 KB
testcase_18 AC 328 ms
34,408 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (654 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/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