結果

問題 No.1948 足し算するだけのパズルゲーム(1)
ユーザー 👑 rin204rin204
提出日時 2022-05-20 21:53:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 946 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 83,712 KB
最終ジャッジ日時 2024-09-20 07:57:38
合計ジャッジ時間 3,782 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 111 ms
78,336 KB
testcase_08 AC 103 ms
80,384 KB
testcase_09 AC 123 ms
80,512 KB
testcase_10 AC 118 ms
81,408 KB
testcase_11 AC 129 ms
81,664 KB
testcase_12 AC 129 ms
82,944 KB
testcase_13 AC 132 ms
83,712 KB
testcase_14 AC 136 ms
83,328 KB
testcase_15 AC 116 ms
82,176 KB
testcase_16 AC 40 ms
52,992 KB
testcase_17 AC 47 ms
55,808 KB
testcase_18 AC 38 ms
52,480 KB
testcase_19 AC 37 ms
52,480 KB
testcase_20 AC 136 ms
82,984 KB
testcase_21 AC 147 ms
82,800 KB
testcase_22 AC 99 ms
77,440 KB
testcase_23 AC 96 ms
77,696 KB
testcase_24 AC 121 ms
82,816 KB
testcase_25 AC 133 ms
82,816 KB
testcase_26 AC 137 ms
83,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(h)]
dp = [[0] * w for _ in range(h)]
dp2 = [[0] * w for _ in range(h)]
dp[0][0] = A[0][0]
dp2[0][0] = A[0][0]
for i in range(h):
    for j in range(w):
        if i == h - 1 and j == w - 1:
            break
        if i != 0:
            dp2[i][j] = max(dp2[i][j], dp[i - 1][j])
            if A[i][j] < dp[i - 1][j]:
                dp[i][j] = max(dp[i][j], dp[i - 1][j] + A[i][j])
            if A[i][j] < dp2[i - 1][j]:
                dp2[i][j] = max(dp2[i][j], dp2[i - 1][j] + A[i][j])
        if j != 0:
            dp2[i][j] = max(dp2[i][j], dp[i][j - 1])
            if A[i][j] < dp[i][j - 1]:
                dp[i][j] = max(dp[i][j], dp[i][j - 1] + A[i][j])
            if A[i][j] < dp2[i][j - 1]:
                dp2[i][j] = max(dp2[i][j], dp2[i][j - 1] + A[i][j])

if max(dp2[-1][-2], dp2[-2][-1]) > A[-1][-1]:
    print("Yes")
else:
    print("No")
0