結果

問題 No.2095 High Rise
ユーザー tamatotamato
提出日時 2022-10-07 21:36:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 546 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 85,376 KB
最終ジャッジ日時 2024-06-12 06:29:34
合計ジャッジ時間 3,234 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,096 KB
testcase_01 AC 33 ms
51,840 KB
testcase_02 AC 33 ms
51,712 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 AC 35 ms
51,840 KB
testcase_06 AC 34 ms
51,968 KB
testcase_07 AC 36 ms
51,584 KB
testcase_08 AC 33 ms
51,840 KB
testcase_09 AC 31 ms
52,096 KB
testcase_10 AC 32 ms
51,840 KB
testcase_11 AC 33 ms
51,712 KB
testcase_12 AC 43 ms
61,952 KB
testcase_13 AC 39 ms
59,520 KB
testcase_14 AC 41 ms
61,568 KB
testcase_15 AC 40 ms
60,160 KB
testcase_16 AC 38 ms
59,392 KB
testcase_17 AC 59 ms
76,544 KB
testcase_18 AC 55 ms
76,672 KB
testcase_19 AC 42 ms
63,872 KB
testcase_20 AC 55 ms
75,776 KB
testcase_21 AC 70 ms
77,568 KB
testcase_22 AC 163 ms
85,248 KB
testcase_23 AC 147 ms
85,208 KB
testcase_24 AC 145 ms
84,992 KB
testcase_25 AC 152 ms
85,376 KB
testcase_26 AC 147 ms
84,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
inf = 10 ** 17


def main():
    import sys
    input = sys.stdin.readline

    N, M = map(int, input().split())
    A = []
    for _ in range(N):
        A.append(list(map(int, input().split())))
    
    if N == 1:
        print(0)
        exit()

    dp = A[0][:]
    mi = min(dp)
    for i in range(1, N):
        dp_new = [inf] * M
        for j in range(M):
            dp_new[j] = min(dp[j] + A[i][j], mi + A[i][j] + A[i-1][j])
        dp = dp_new
        mi = min(dp)
    print(mi)


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