結果

問題 No.44 DPなすごろく
ユーザー scalerscaler
提出日時 2024-09-01 16:40:55
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 887 ms / 5,000 ms
コード長 235 bytes
コンパイル時間 8,270 ms
コンパイル使用メモリ 255,004 KB
実行使用メモリ 64,356 KB
最終ジャッジ日時 2024-09-01 16:41:28
合計ジャッジ時間 30,803 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 870 ms
64,196 KB
testcase_01 AC 879 ms
64,348 KB
testcase_02 AC 866 ms
64,340 KB
testcase_03 AC 848 ms
64,244 KB
testcase_04 AC 874 ms
64,200 KB
testcase_05 AC 867 ms
64,252 KB
testcase_06 AC 851 ms
64,096 KB
testcase_07 AC 878 ms
64,300 KB
testcase_08 AC 870 ms
64,192 KB
testcase_09 AC 840 ms
64,260 KB
testcase_10 AC 881 ms
64,256 KB
testcase_11 AC 881 ms
64,136 KB
testcase_12 AC 882 ms
64,124 KB
testcase_13 AC 860 ms
64,208 KB
testcase_14 AC 887 ms
64,204 KB
testcase_15 AC 872 ms
64,328 KB
testcase_16 AC 855 ms
64,200 KB
testcase_17 AC 849 ms
64,204 KB
testcase_18 AC 869 ms
64,356 KB
testcase_19 AC 873 ms
64,172 KB
testcase_20 AC 834 ms
64,036 KB
testcase_21 AC 884 ms
64,136 KB
testcase_22 AC 884 ms
64,340 KB
testcase_23 AC 855 ms
64,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readInt

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