結果

問題 No.1948 足し算するだけのパズルゲーム(1)
ユーザー tnodinotnodino
提出日時 2022-05-21 19:41:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 984 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 83,296 KB
最終ジャッジ日時 2024-09-20 12:07:16
合計ジャッジ時間 3,782 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 37 ms
51,712 KB
testcase_06 AC 36 ms
52,608 KB
testcase_07 AC 105 ms
77,824 KB
testcase_08 AC 98 ms
80,768 KB
testcase_09 AC 111 ms
80,884 KB
testcase_10 AC 101 ms
80,768 KB
testcase_11 AC 117 ms
81,960 KB
testcase_12 AC 116 ms
82,944 KB
testcase_13 AC 130 ms
83,072 KB
testcase_14 AC 130 ms
83,296 KB
testcase_15 AC 108 ms
82,176 KB
testcase_16 AC 40 ms
53,376 KB
testcase_17 AC 48 ms
55,808 KB
testcase_18 AC 38 ms
52,608 KB
testcase_19 AC 37 ms
52,608 KB
testcase_20 AC 130 ms
82,692 KB
testcase_21 AC 129 ms
82,308 KB
testcase_22 AC 93 ms
78,084 KB
testcase_23 AC 90 ms
77,696 KB
testcase_24 AC 99 ms
77,952 KB
testcase_25 AC 116 ms
82,616 KB
testcase_26 AC 127 ms
82,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W = map(int,input().split())
A = [list(map(int,input().split())) for _ in range(H)]
DP1 = [[-1] * W for _ in range(H)]
DP2 = [[-1] * W for _ in range(H)]
for i in range(H):
    for j in range(W):
        if i == 0 and j == 0:
            DP1[0][0] = A[0][0]
            continue
        if i - 1 >= 0:
            if DP1[i-1][j] > A[i][j]:
                DP1[i][j] = max(DP1[i][j], DP1[i-1][j] + A[i][j])
            else:
                DP2[i][j] = max(DP2[i][j], DP1[i-1][j])
            if DP2[i-1][j] > A[i][j]:
                DP2[i][j] = max(DP2[i][j], DP2[i-1][j] + A[i][j])
        if j - 1 >= 0:
            if DP1[i][j-1] > A[i][j]:
                DP1[i][j] = max(DP1[i][j], DP1[i][j-1] + A[i][j])
            else:
                DP2[i][j] = max(DP2[i][j], DP1[i][j-1])
            if DP2[i][j-1] > A[i][j]:
                DP2[i][j] = max(DP2[i][j], DP2[i][j-1] + A[i][j])
if DP1[-1][-1] > A[-1][-1] or DP2[-1][-1] > A[-1][-1]:
    print('Yes')
else:
    print('No')
0