結果

問題 No.2095 High Rise
ユーザー ああいいああいい
提出日時 2022-10-08 22:06:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 449 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 85,760 KB
最終ジャッジ日時 2024-06-23 00:09:29
合計ジャッジ時間 3,767 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 39 ms
51,584 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 37 ms
51,584 KB
testcase_09 AC 37 ms
51,840 KB
testcase_10 AC 39 ms
51,584 KB
testcase_11 AC 37 ms
51,712 KB
testcase_12 AC 51 ms
62,592 KB
testcase_13 AC 47 ms
60,288 KB
testcase_14 AC 49 ms
62,080 KB
testcase_15 AC 49 ms
61,056 KB
testcase_16 AC 46 ms
60,160 KB
testcase_17 AC 77 ms
76,288 KB
testcase_18 AC 84 ms
76,672 KB
testcase_19 AC 58 ms
64,640 KB
testcase_20 AC 78 ms
75,904 KB
testcase_21 AC 97 ms
79,872 KB
testcase_22 AC 191 ms
85,632 KB
testcase_23 AC 189 ms
85,248 KB
testcase_24 AC 197 ms
85,760 KB
testcase_25 AC 195 ms
85,632 KB
testcase_26 AC 189 ms
85,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
A = [list(map(int,input().split())) for _ in range(N)]


import sys
if N == 1:
    print(0)
    exit()
inf = 10 ** 15
dp = [[inf] * M for _ in range(N)]

for i in range(M):
    dp[0][i] = A[0][i]
for i in range(1,N):
    s = min(dp[i-1])
    for j in range(M):
        dp[i][j] = min(dp[i-1][j] + A[i][j],s + A[i][j] + A[i-1][j])
ans = inf
for j in range(M):
    if dp[-1][j] < ans:
        ans = dp[-1][j]
print(ans)
0