結果

問題 No.44 DPなすごろく
ユーザー scalerscaler
提出日時 2024-09-01 16:38:51
言語 Scala(Beta)
(3.4.0)
結果
RE  
実行時間 -
コード長 221 bytes
コンパイル時間 9,021 ms
コンパイル使用メモリ 265,628 KB
実行使用メモリ 64,836 KB
最終ジャッジ日時 2024-09-01 16:39:24
合計ジャッジ時間 33,009 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 897 ms
64,240 KB
testcase_01 AC 895 ms
64,304 KB
testcase_02 AC 881 ms
64,216 KB
testcase_03 AC 844 ms
64,080 KB
testcase_04 AC 884 ms
64,072 KB
testcase_05 AC 883 ms
64,048 KB
testcase_06 AC 850 ms
64,164 KB
testcase_07 AC 882 ms
64,124 KB
testcase_08 AC 873 ms
64,112 KB
testcase_09 AC 838 ms
64,324 KB
testcase_10 AC 867 ms
64,344 KB
testcase_11 AC 871 ms
64,096 KB
testcase_12 AC 868 ms
64,256 KB
testcase_13 AC 855 ms
64,344 KB
testcase_14 AC 882 ms
64,308 KB
testcase_15 AC 881 ms
64,204 KB
testcase_16 AC 854 ms
64,328 KB
testcase_17 AC 872 ms
64,128 KB
testcase_18 AC 869 ms
64,232 KB
testcase_19 AC 870 ms
64,080 KB
testcase_20 AC 856 ms
64,232 KB
testcase_21 AC 877 ms
64,140 KB
testcase_22 AC 876 ms
64,064 KB
testcase_23 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readInt

@main
def yuki44(): Unit =
  val dp = LazyList.unfold((1, 1)) { case (a, b) =>
    if a < 0 then
      None
    else
      Some((a, (b, a + b)))
  }.toList
  val n = readInt
  println(dp(n))
0