結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,356 KB
testcase_01 AC 35 ms
52,000 KB
testcase_02 AC 34 ms
52,756 KB
testcase_03 AC 34 ms
52,312 KB
testcase_04 AC 34 ms
52,972 KB
testcase_05 AC 33 ms
52,136 KB
testcase_06 AC 35 ms
53,916 KB
testcase_07 AC 34 ms
52,764 KB
testcase_08 AC 35 ms
51,824 KB
testcase_09 AC 36 ms
52,908 KB
testcase_10 AC 35 ms
52,744 KB
testcase_11 AC 37 ms
52,084 KB
testcase_12 AC 46 ms
62,876 KB
testcase_13 AC 44 ms
61,232 KB
testcase_14 AC 45 ms
62,324 KB
testcase_15 AC 41 ms
61,112 KB
testcase_16 AC 42 ms
61,604 KB
testcase_17 AC 68 ms
76,616 KB
testcase_18 AC 64 ms
76,692 KB
testcase_19 AC 49 ms
65,636 KB
testcase_20 AC 65 ms
76,108 KB
testcase_21 AC 79 ms
78,116 KB
testcase_22 AC 167 ms
85,436 KB
testcase_23 AC 177 ms
85,664 KB
testcase_24 AC 169 ms
85,460 KB
testcase_25 AC 169 ms
85,404 KB
testcase_26 AC 165 ms
85,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
A = [list(map(int,input().split())) for i in range(n)]

if n == 1:
    print(0)
    exit()
dp = A[0]

for i in range(1,n):
    ndp = [0]*m
    mi = min(dp)
    for j in range(m):
        ndp[j] = dp[j]+A[i][j]
        ndp[j] = min(ndp[j],mi+A[i][j]+A[i-1][j])
    dp = ndp
print(min(dp))
0