結果

問題 No.2095 High Rise
ユーザー terasaterasa
提出日時 2022-10-07 23:15:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 861 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 103,596 KB
最終ジャッジ日時 2024-06-12 21:13:50
合計ジャッジ時間 4,011 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
55,920 KB
testcase_01 AC 46 ms
56,184 KB
testcase_02 AC 45 ms
56,008 KB
testcase_03 AC 48 ms
57,348 KB
testcase_04 AC 46 ms
56,560 KB
testcase_05 AC 46 ms
56,660 KB
testcase_06 AC 45 ms
56,844 KB
testcase_07 AC 45 ms
56,052 KB
testcase_08 AC 46 ms
56,252 KB
testcase_09 AC 46 ms
56,872 KB
testcase_10 AC 45 ms
55,924 KB
testcase_11 AC 46 ms
56,516 KB
testcase_12 AC 56 ms
66,628 KB
testcase_13 AC 55 ms
65,688 KB
testcase_14 AC 58 ms
67,440 KB
testcase_15 AC 57 ms
67,496 KB
testcase_16 AC 57 ms
65,448 KB
testcase_17 AC 82 ms
77,212 KB
testcase_18 AC 78 ms
77,144 KB
testcase_19 AC 61 ms
70,716 KB
testcase_20 AC 78 ms
77,500 KB
testcase_21 AC 97 ms
80,564 KB
testcase_22 AC 222 ms
103,228 KB
testcase_23 AC 224 ms
103,596 KB
testcase_24 AC 222 ms
103,184 KB
testcase_25 AC 223 ms
103,164 KB
testcase_26 AC 222 ms
103,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
# import pypyjit
import itertools
import heapq
import math
import bisect
from collections import deque, defaultdict
from functools import lru_cache, cmp_to_key


# for AtCoder Easy test
if __file__ == 'prog.py':
    pass
else:
    sys.setrecursionlimit(10 ** 6)
# pypyjit.set_param('max_unroll_recursion=-1')

input = sys.stdin.readline


def readints(): return map(int, input().split())
def readlist(): return list(readints())
def readstr(): return input()[:-1]


N, M = readints()
A = [readlist() for _ in range(N)]
if N == 1:
    print(0)
    exit()
INF = 1 << 60

dp = [[None for _ in range(M)] for _ in range(N)]
dp[0] = A[0]
for i in range(1, N):
    m = INF
    for j in range(M):
        dp[i][j] = dp[i - 1][j] + A[i][j]
        m = min(m, dp[i][j])
    for j in range(M):
        dp[i][j] = min(dp[i][j], m + A[i][j])
print(min(dp[N - 1]))
0