結果

問題 No.2095 High Rise
ユーザー KudeKude
提出日時 2022-10-07 22:20:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 287 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 77,040 KB
最終ジャッジ日時 2024-06-12 19:10:40
合計ジャッジ時間 2,952 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,888 KB
testcase_01 AC 29 ms
52,140 KB
testcase_02 AC 28 ms
52,152 KB
testcase_03 AC 32 ms
52,524 KB
testcase_04 AC 32 ms
52,636 KB
testcase_05 AC 33 ms
53,112 KB
testcase_06 AC 32 ms
52,776 KB
testcase_07 AC 33 ms
51,956 KB
testcase_08 AC 32 ms
52,404 KB
testcase_09 AC 32 ms
53,040 KB
testcase_10 AC 33 ms
52,688 KB
testcase_11 AC 33 ms
53,792 KB
testcase_12 AC 41 ms
60,748 KB
testcase_13 AC 40 ms
60,344 KB
testcase_14 AC 44 ms
62,652 KB
testcase_15 AC 41 ms
62,420 KB
testcase_16 AC 41 ms
60,028 KB
testcase_17 AC 62 ms
75,944 KB
testcase_18 AC 56 ms
75,456 KB
testcase_19 AC 42 ms
65,592 KB
testcase_20 AC 58 ms
75,708 KB
testcase_21 AC 67 ms
75,204 KB
testcase_22 AC 139 ms
76,408 KB
testcase_23 AC 138 ms
76,660 KB
testcase_24 AC 138 ms
77,040 KB
testcase_25 AC 136 ms
76,664 KB
testcase_26 AC 137 ms
76,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
dp = list(map(int, input().split()))
pa = dp[:]
if n == 1:
    print(0)
    exit()
for _ in range(n - 1):
    a = list(map(int, input().split()))
    mn = min(dp)
    dp = [min(dp[j] + a[j], mn + pa[j] + a[j]) for j in range(m)]
    pa = a
print(min(dp))
0