結果

問題 No.2095 High Rise
ユーザー kyskys
提出日時 2022-10-07 21:57:13
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,021 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 92,552 KB
最終ジャッジ日時 2024-06-12 07:13:18
合計ジャッジ時間 6,317 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,896 KB
testcase_01 AC 38 ms
52,556 KB
testcase_02 AC 38 ms
53,364 KB
testcase_03 AC 39 ms
53,908 KB
testcase_04 AC 38 ms
53,220 KB
testcase_05 AC 39 ms
53,764 KB
testcase_06 AC 39 ms
52,396 KB
testcase_07 AC 39 ms
53,216 KB
testcase_08 AC 38 ms
53,840 KB
testcase_09 AC 39 ms
53,812 KB
testcase_10 AC 39 ms
52,540 KB
testcase_11 AC 39 ms
52,640 KB
testcase_12 AC 51 ms
63,904 KB
testcase_13 AC 50 ms
63,572 KB
testcase_14 AC 55 ms
67,096 KB
testcase_15 AC 52 ms
63,900 KB
testcase_16 AC 51 ms
62,528 KB
testcase_17 AC 192 ms
76,380 KB
testcase_18 AC 146 ms
76,400 KB
testcase_19 AC 61 ms
68,496 KB
testcase_20 AC 140 ms
77,152 KB
testcase_21 AC 310 ms
77,832 KB
testcase_22 TLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    from sys import stdin, setrecursionlimit
    # setrecursionlimit(1000000)
    input = stdin.readline
    def iinput(): return int(input())
    def sinput(): return input().rstrip()
    def i0input(): return int(input()) - 1
    def linput(): return list(input().split())
    def liinput(): return list(map(int, input().split()))
    def miinput(): return map(int, input().split())
    def li0input(): return list(map(lambda x: int(x) - 1, input().split()))
    def mi0input(): return map(lambda x: int(x) - 1, input().split())
    INF = 1000000000000000000
    MOD = 1000000007

    N, M = miinput()
    A = []
    for _ in [0] * N:
        A.append(liinput())
    
    if N == 1:
        print(0)
        return
    
    dp = [INF] * N
    dp[0] = 0
    
    for i in range(1, N):
        for j in range(M):
            A[i][j] += A[i-1][j]
            dp[i] = min(dp[i], A[i][j])
            for k in range(i-1):
                dp[i] = min(dp[k+1] + A[i][j] - A[k][j], dp[i])

    print(dp[-1])

main()
0