結果

問題 No.2095 High Rise
ユーザー terasaterasa
提出日時 2022-10-07 23:15:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 861 bytes
コンパイル時間 440 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 103,864 KB
最終ジャッジ日時 2024-06-12 21:11:37
合計ジャッジ時間 4,282 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
56,116 KB
testcase_01 AC 45 ms
56,516 KB
testcase_02 AC 47 ms
56,524 KB
testcase_03 AC 47 ms
57,076 KB
testcase_04 AC 45 ms
55,904 KB
testcase_05 AC 47 ms
56,344 KB
testcase_06 AC 45 ms
56,976 KB
testcase_07 AC 45 ms
56,040 KB
testcase_08 AC 45 ms
56,200 KB
testcase_09 AC 46 ms
56,496 KB
testcase_10 AC 46 ms
56,148 KB
testcase_11 AC 44 ms
56,940 KB
testcase_12 AC 54 ms
67,196 KB
testcase_13 AC 54 ms
66,968 KB
testcase_14 AC 55 ms
67,660 KB
testcase_15 AC 53 ms
65,664 KB
testcase_16 AC 52 ms
65,408 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

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 << 30

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