結果

問題 No.2095 High Rise
ユーザー Akijin_007Akijin_007
提出日時 2022-10-07 22:41:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 86,200 KB
最終ジャッジ日時 2024-06-12 19:54:23
合計ジャッジ時間 3,693 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,084 KB
testcase_01 AC 35 ms
51,812 KB
testcase_02 AC 34 ms
52,724 KB
testcase_03 AC 34 ms
53,668 KB
testcase_04 AC 33 ms
53,128 KB
testcase_05 AC 34 ms
52,292 KB
testcase_06 AC 33 ms
52,608 KB
testcase_07 AC 34 ms
53,440 KB
testcase_08 AC 33 ms
53,348 KB
testcase_09 AC 35 ms
52,288 KB
testcase_10 AC 33 ms
52,204 KB
testcase_11 AC 34 ms
52,492 KB
testcase_12 AC 44 ms
61,684 KB
testcase_13 AC 46 ms
63,636 KB
testcase_14 AC 45 ms
63,196 KB
testcase_15 AC 44 ms
61,664 KB
testcase_16 AC 42 ms
61,048 KB
testcase_17 AC 67 ms
76,436 KB
testcase_18 AC 64 ms
76,940 KB
testcase_19 AC 50 ms
66,648 KB
testcase_20 AC 66 ms
76,520 KB
testcase_21 AC 83 ms
78,100 KB
testcase_22 AC 175 ms
86,200 KB
testcase_23 AC 180 ms
85,640 KB
testcase_24 AC 171 ms
85,700 KB
testcase_25 AC 172 ms
85,516 KB
testcase_26 AC 173 ms
85,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

N, M = map(int, input().split())
A = [0] * N
for i in range(N):
    A[i] = list(map(int, input().split()))

dp = [0] * M
for i in range(M):
    dp[i] = A[0][i]
# print(dp)

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

    for j in range(M):
        ndp[j] = min(m + A[i][j], dp[j])
    dp = list(ndp)

if N == 1:
    print("0")
else:
    print(min(dp))





0