結果

問題 No.2095 High Rise
ユーザー flygonflygon
提出日時 2022-10-07 22:01:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 85,580 KB
最終ジャッジ日時 2024-06-12 18:24:21
合計ジャッジ時間 3,699 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,276 KB
testcase_01 AC 31 ms
52,400 KB
testcase_02 AC 31 ms
53,016 KB
testcase_03 AC 32 ms
52,072 KB
testcase_04 AC 31 ms
51,816 KB
testcase_05 AC 31 ms
52,892 KB
testcase_06 AC 31 ms
52,412 KB
testcase_07 AC 30 ms
52,620 KB
testcase_08 AC 32 ms
53,388 KB
testcase_09 AC 35 ms
52,112 KB
testcase_10 AC 32 ms
52,200 KB
testcase_11 AC 33 ms
52,608 KB
testcase_12 AC 44 ms
63,888 KB
testcase_13 AC 44 ms
63,120 KB
testcase_14 AC 44 ms
63,712 KB
testcase_15 AC 43 ms
63,248 KB
testcase_16 AC 42 ms
60,804 KB
testcase_17 AC 70 ms
76,604 KB
testcase_18 AC 61 ms
76,592 KB
testcase_19 AC 46 ms
66,712 KB
testcase_20 AC 62 ms
76,028 KB
testcase_21 AC 80 ms
80,012 KB
testcase_22 AC 175 ms
85,380 KB
testcase_23 AC 171 ms
85,400 KB
testcase_24 AC 168 ms
85,580 KB
testcase_25 AC 173 ms
85,332 KB
testcase_26 AC 171 ms
85,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
a = [list(map(int,input().split())) for i in range(n)]
INF = 10**18
if n == 1:print(0); exit()
dp = [[INF]*(m) for i in range(n)]
dp[-1] = a[-1][::1]
for i in range(n-1)[::-1]:
  mn = INF
  for j in range(m):
    dp[i][j] =  dp[i+1][j] + a[i][j]
    mn = min(mn,dp[i][j])
  for j in range(m):
    if dp[i][j] == mn: continue
    dp[i][j] = min(dp[i][j], mn + a[i][j])

print(min(dp[0]))
0