結果

問題 No.2095 High Rise
ユーザー 👑 KazunKazun
提出日時 2022-10-08 04:45:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 447 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 85,952 KB
最終ジャッジ日時 2024-06-13 04:53:38
合計ジャッジ時間 4,196 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,008 KB
testcase_01 AC 39 ms
52,604 KB
testcase_02 AC 40 ms
52,888 KB
testcase_03 AC 39 ms
53,316 KB
testcase_04 AC 41 ms
52,240 KB
testcase_05 AC 41 ms
52,476 KB
testcase_06 AC 41 ms
52,404 KB
testcase_07 AC 40 ms
52,480 KB
testcase_08 AC 39 ms
52,872 KB
testcase_09 AC 40 ms
53,612 KB
testcase_10 AC 39 ms
52,072 KB
testcase_11 AC 39 ms
52,580 KB
testcase_12 AC 64 ms
62,008 KB
testcase_13 AC 47 ms
61,800 KB
testcase_14 AC 48 ms
62,136 KB
testcase_15 AC 47 ms
61,340 KB
testcase_16 AC 45 ms
60,272 KB
testcase_17 AC 73 ms
76,468 KB
testcase_18 AC 69 ms
76,392 KB
testcase_19 AC 51 ms
64,296 KB
testcase_20 AC 70 ms
75,768 KB
testcase_21 AC 84 ms
78,144 KB
testcase_22 AC 203 ms
85,068 KB
testcase_23 AC 183 ms
85,592 KB
testcase_24 AC 181 ms
85,952 KB
testcase_25 AC 195 ms
85,312 KB
testcase_26 AC 183 ms
85,140 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=9*10**18
    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