結果

問題 No.1948 足し算するだけのパズルゲーム(1)
ユーザー scalerscaler
提出日時 2024-08-31 09:00:20
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 1,081 bytes
コンパイル時間 15,481 ms
コンパイル使用メモリ 265,768 KB
実行使用メモリ 70,632 KB
最終ジャッジ日時 2024-08-31 09:01:11
合計ジャッジ時間 45,425 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 960 ms
65,080 KB
testcase_01 AC 957 ms
65,108 KB
testcase_02 AC 948 ms
64,936 KB
testcase_03 AC 915 ms
65,120 KB
testcase_04 AC 921 ms
65,056 KB
testcase_05 AC 953 ms
64,920 KB
testcase_06 AC 955 ms
65,008 KB
testcase_07 AC 1,317 ms
68,304 KB
testcase_08 AC 1,358 ms
70,400 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 1,362 ms
68,760 KB
testcase_13 AC 1,353 ms
70,556 KB
testcase_14 AC 1,364 ms
68,568 KB
testcase_15 AC 1,350 ms
68,688 KB
testcase_16 AC 943 ms
65,088 KB
testcase_17 AC 978 ms
65,508 KB
testcase_18 AC 955 ms
65,200 KB
testcase_19 AC 957 ms
64,992 KB
testcase_20 AC 1,356 ms
70,532 KB
testcase_21 AC 1,366 ms
68,580 KB
testcase_22 AC 1,332 ms
68,344 KB
testcase_23 AC 1,327 ms
68,328 KB
testcase_24 AC 1,341 ms
68,408 KB
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine


@main def main(): Unit =
  val hw = readLine.split(" ").map(_.toInt)
  val (h, w) = (hw(0), hw(1))
  val dp: Array[Array[Array[Int]]] = Array.ofDim[Int](2, 500, 500)
  val input: Array[Array[Int]] = Array.ofDim[Int](500, 500)
  for
    i <- 0 until h
  do
    input(i) = readLine().split(" ").map(_.toInt)
  dp(0)(0)(0) = input(0)(0)
  for
    f <- 0 until 2
    y <- 0 until h
    x <- 0 until w
  do
    if y < h - 1 then
      if dp(f)(y)(x) > input(y + 1)(x) && dp(f)(y + 1)(x) < dp(f)(y)(x) + input(y + 1)(x) then
        dp(f)(y + 1)(x) = dp(f)(y)(x) + input(y + 1)(x)
      if f == 0 && dp(1)(y + 1)(x) < dp(0)(y)(x) then
        dp(1)(y + 1)(x) = dp(0)(y)(x)
    if x < w - 1 then
      if dp(f)(y)(x) > input(y)(x + 1) && dp(f)(y)(x + 1) < dp(f)(y)(x) + input(y)(x + 1) then
        dp(f)(y)(x + 1) = dp(f)(y)(x) + input(y)(x + 1)
      if f == 0 && dp(1)(y)(x + 1) < dp(0)(y)(x) then
        dp(1)(y)(x + 1) = dp(0)(y)(x)
  val ans = if (dp(0)(h - 1)(w - 1) + dp(1)(h - 1)(w - 1)) > input(h - 1)(w - 1) then "Yes" else "No"
  println(ans)
0