結果

問題 No.1948 足し算するだけのパズルゲーム(1)
ユーザー scalerscaler
提出日時 2024-08-31 09:07:11
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,374 ms / 2,000 ms
コード長 1,089 bytes
コンパイル時間 9,592 ms
コンパイル使用メモリ 267,660 KB
実行使用メモリ 76,444 KB
最終ジャッジ日時 2024-08-31 09:07:54
合計ジャッジ時間 16,188 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 934 ms
69,156 KB
testcase_01 AC 902 ms
69,320 KB
testcase_02 AC 935 ms
69,224 KB
testcase_03 AC 934 ms
69,236 KB
testcase_04 AC 911 ms
69,372 KB
testcase_05 AC 922 ms
69,280 KB
testcase_06 AC 925 ms
69,176 KB
testcase_07 AC 1,324 ms
75,860 KB
testcase_08 AC 1,335 ms
75,720 KB
testcase_09 AC 1,340 ms
76,012 KB
testcase_10 AC 1,374 ms
75,740 KB
testcase_11 AC 1,352 ms
76,360 KB
testcase_12 AC 1,326 ms
76,200 KB
testcase_13 AC 1,368 ms
76,092 KB
testcase_14 AC 1,325 ms
75,804 KB
testcase_15 AC 1,350 ms
76,232 KB
testcase_16 AC 918 ms
69,312 KB
testcase_17 AC 963 ms
69,424 KB
testcase_18 AC 940 ms
69,408 KB
testcase_19 AC 962 ms
69,408 KB
testcase_20 AC 1,343 ms
76,092 KB
testcase_21 AC 1,322 ms
75,888 KB
testcase_22 AC 1,318 ms
76,104 KB
testcase_23 AC 1,307 ms
75,876 KB
testcase_24 AC 1,340 ms
76,444 KB
testcase_25 AC 1,336 ms
76,356 KB
testcase_26 AC 1,374 ms
76,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine

@main def yuki1948(): Unit =
  val hw = readLine.split(" ").map(_.toInt)
  val (h, w) = (hw(0), hw(1))
  val dp: Array[Array[Array[Long]]] = Array.ofDim[Long](2, 500, 500)
  val input: Array[Array[Long]] = Array.ofDim[Long](500, 500)
  for
    i <- 0 until h
  do
    input(i) = readLine().split(" ").map(_.toLong)
  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