結果

問題 No.2095 High Rise
ユーザー titiatitia
提出日時 2022-10-07 22:33:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 400 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 50,944 KB
最終ジャッジ日時 2024-06-12 19:39:02
合計ジャッジ時間 9,259 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,624 KB
testcase_01 AC 23 ms
10,624 KB
testcase_02 WA -
testcase_03 AC 24 ms
10,624 KB
testcase_04 AC 23 ms
10,624 KB
testcase_05 AC 23 ms
10,624 KB
testcase_06 AC 24 ms
10,496 KB
testcase_07 AC 24 ms
10,752 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 23 ms
10,752 KB
testcase_11 AC 24 ms
10,752 KB
testcase_12 AC 27 ms
10,752 KB
testcase_13 AC 25 ms
10,752 KB
testcase_14 AC 32 ms
10,752 KB
testcase_15 AC 28 ms
10,624 KB
testcase_16 AC 25 ms
10,624 KB
testcase_17 AC 155 ms
15,360 KB
testcase_18 AC 109 ms
13,568 KB
testcase_19 AC 45 ms
11,392 KB
testcase_20 AC 163 ms
15,488 KB
testcase_21 AC 310 ms
20,096 KB
testcase_22 AC 1,210 ms
50,944 KB
testcase_23 AC 1,223 ms
50,816 KB
testcase_24 AC 1,188 ms
50,816 KB
testcase_25 AC 1,244 ms
50,944 KB
testcase_26 AC 1,227 ms
50,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

if N==0:
    print(0)
    exit()

DP=[0]*M
for i in range(M):
    DP[i]=A[0][i]

for i in range(1,N):
    MIN=1<<62
    for j in range(M):
        MIN=min(MIN,DP[j]+A[i][j])

    NDP=[0]*M

    for j in range(M):
        NDP[j]=min(DP[j],MIN)+A[i][j]

    DP=NDP

print(min(DP))
0