結果

問題 No.2095 High Rise
ユーザー 👑 KazunKazun
提出日時 2022-10-08 04:44:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 213 ms / 2,000 ms
コード長 466 bytes
コンパイル時間 465 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 85,912 KB
最終ジャッジ日時 2024-06-13 04:51:58
合計ジャッジ時間 3,998 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,736 KB
testcase_01 AC 38 ms
52,624 KB
testcase_02 AC 37 ms
51,756 KB
testcase_03 AC 37 ms
52,152 KB
testcase_04 AC 37 ms
52,676 KB
testcase_05 AC 36 ms
53,276 KB
testcase_06 AC 37 ms
51,944 KB
testcase_07 AC 36 ms
53,756 KB
testcase_08 AC 38 ms
52,136 KB
testcase_09 AC 37 ms
52,284 KB
testcase_10 AC 37 ms
52,800 KB
testcase_11 AC 37 ms
52,796 KB
testcase_12 AC 46 ms
61,528 KB
testcase_13 AC 46 ms
61,072 KB
testcase_14 AC 47 ms
62,268 KB
testcase_15 AC 46 ms
62,832 KB
testcase_16 AC 44 ms
60,008 KB
testcase_17 AC 75 ms
76,708 KB
testcase_18 AC 68 ms
76,448 KB
testcase_19 AC 50 ms
65,416 KB
testcase_20 AC 72 ms
76,852 KB
testcase_21 AC 91 ms
78,032 KB
testcase_22 AC 204 ms
85,448 KB
testcase_23 AC 206 ms
85,708 KB
testcase_24 AC 205 ms
85,640 KB
testcase_25 AC 213 ms
85,772 KB
testcase_26 AC 205 ms
85,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    if N==1:
        return 0

    inf=float("inf")
    T=0
    DP=[inf]*M
    for i in range(N-1):
        E=DP
        DP=[inf]*M
        Ai=A[i]; Aii=A[i+1]
        for j in range(M):
            DP[j]=min(E[j]+Aii[j], T+Ai[j]+Aii[j])
        T=min(DP)

    return T

#==================================================
print(solve())
0