結果

問題 No.44 DPなすごろく
ユーザー taktak
提出日時 2019-02-25 17:09:09
言語 F#
(F# 4.0)
結果
AC  
実行時間 46 ms / 5,000 ms
コード長 331 bytes
コンパイル時間 11,879 ms
コンパイル使用メモリ 186,736 KB
実行使用メモリ 29,568 KB
最終ジャッジ日時 2024-06-08 01:12:05
合計ジャッジ時間 13,862 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
29,056 KB
testcase_01 AC 45 ms
29,312 KB
testcase_02 AC 43 ms
29,184 KB
testcase_03 AC 46 ms
29,568 KB
testcase_04 AC 44 ms
29,184 KB
testcase_05 AC 45 ms
29,440 KB
testcase_06 AC 44 ms
29,184 KB
testcase_07 AC 44 ms
29,184 KB
testcase_08 AC 44 ms
29,056 KB
testcase_09 AC 45 ms
29,184 KB
testcase_10 AC 44 ms
29,312 KB
testcase_11 AC 44 ms
29,184 KB
testcase_12 AC 44 ms
29,428 KB
testcase_13 AC 44 ms
29,428 KB
testcase_14 AC 43 ms
29,440 KB
testcase_15 AC 44 ms
29,276 KB
testcase_16 AC 43 ms
29,184 KB
testcase_17 AC 44 ms
29,428 KB
testcase_18 AC 45 ms
29,312 KB
testcase_19 AC 45 ms
29,568 KB
testcase_20 AC 44 ms
29,440 KB
testcase_21 AC 44 ms
29,312 KB
testcase_22 AC 43 ms
29,312 KB
testcase_23 AC 45 ms
29,568 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (284 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 #

open System

let inline (+=) (x: byref<'a>) (y: 'a) = x <- x + y

let solve n =
  let dp = Array.zeroCreate (n + 1)
  dp.[n] <- 1L
  for i in (n - 1) .. -1 .. 0 do
    if (i + 2) <= n then &dp.[i] += dp.[i + 2]
    if (i + 1) <= n then &dp.[i] += dp.[i + 1]
  dp.[0]

let N = Console.ReadLine() |> int

solve N
|> Console.WriteLine
0