結果

問題 No.1948 足し算するだけのパズルゲーム(1)
ユーザー AkariAkari
提出日時 2022-05-21 00:03:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,846 ms / 2,000 ms
コード長 981 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 50,616 KB
最終ジャッジ日時 2024-09-20 10:27:39
合計ジャッジ時間 32,204 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 486 ms
44,528 KB
testcase_01 AC 487 ms
44,268 KB
testcase_02 AC 474 ms
43,900 KB
testcase_03 AC 486 ms
44,272 KB
testcase_04 AC 492 ms
44,020 KB
testcase_05 AC 486 ms
44,268 KB
testcase_06 AC 485 ms
44,020 KB
testcase_07 AC 1,474 ms
50,616 KB
testcase_08 AC 1,140 ms
49,416 KB
testcase_09 AC 1,494 ms
49,660 KB
testcase_10 AC 1,812 ms
50,040 KB
testcase_11 AC 1,158 ms
49,548 KB
testcase_12 AC 1,263 ms
49,656 KB
testcase_13 AC 1,251 ms
49,664 KB
testcase_14 AC 1,194 ms
49,436 KB
testcase_15 AC 1,135 ms
49,420 KB
testcase_16 AC 470 ms
44,020 KB
testcase_17 AC 475 ms
44,020 KB
testcase_18 AC 478 ms
44,148 KB
testcase_19 AC 473 ms
44,148 KB
testcase_20 AC 1,795 ms
49,292 KB
testcase_21 AC 1,824 ms
49,388 KB
testcase_22 AC 1,164 ms
49,432 KB
testcase_23 AC 1,175 ms
49,704 KB
testcase_24 AC 1,841 ms
49,316 KB
testcase_25 AC 1,769 ms
49,080 KB
testcase_26 AC 1,846 ms
49,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np



def main():
    h, w = map(int, input().split())
    A = np.fromstring(sys.stdin.read(), np.int64, sep=' ').reshape(-1, w)
    B = np.zeros_like(A, np.int64)
    C = np.zeros_like(A, np.int64)
    B[0, 0] = A[0, 0]
    for i in range(h):
        for j in range(w):
            if i == h - 1 and j == w - 1: continue
            a = A[i, j]
            if i:
                b = B[i - 1, j]
                c = C[i - 1, j]
                if b > a: B[i, j] = max(B[i, j], b + a)
                if c > a: C[i, j] = max(C[i, j], c + a)
                C[i, j] = max(C[i, j], b)
            if j:
                b = B[i, j - 1]
                c = C[i, j - 1]
                if b > a: B[i, j] = max(B[i, j], b + a)
                if c > a: C[i, j] = max(C[i, j], c + a)
                C[i, j] = max(C[i, j], b)
    print('Yes' if max(B[-2, -1], B[-1, -2], C[-2, -1], C[-1, -2]) > A[-1, -1] else 'No')

    



if __name__ == '__main__':
    main()
0