結果

問題 No.2095 High Rise
ユーザー minimumminimum
提出日時 2023-03-31 21:26:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 85,484 KB
最終ジャッジ日時 2024-09-22 23:58:08
合計ジャッジ時間 4,994 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 39 ms
52,352 KB
testcase_08 AC 38 ms
51,968 KB
testcase_09 AC 39 ms
52,096 KB
testcase_10 AC 39 ms
52,096 KB
testcase_11 AC 37 ms
52,096 KB
testcase_12 AC 48 ms
61,312 KB
testcase_13 AC 49 ms
61,568 KB
testcase_14 AC 49 ms
62,208 KB
testcase_15 AC 48 ms
61,312 KB
testcase_16 AC 46 ms
60,544 KB
testcase_17 AC 73 ms
76,288 KB
testcase_18 AC 69 ms
76,160 KB
testcase_19 AC 51 ms
64,896 KB
testcase_20 AC 72 ms
76,160 KB
testcase_21 AC 91 ms
77,644 KB
testcase_22 AC 194 ms
85,484 KB
testcase_23 AC 194 ms
85,352 KB
testcase_24 AC 193 ms
85,212 KB
testcase_25 AC 194 ms
85,084 KB
testcase_26 AC 194 ms
85,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [0] * M
for i in range(N):
    ndp = [dp[j] + A[i][j] for j in range(M)]
    m = min(ndp)
    nndp = [min(ndp[j], m + A[i][j]) for j in range(M)]
    dp = nndp

print(min(dp))
0