結果

問題 No.1199 お菓子配り-2
ユーザー donutholedonuthole
提出日時 2020-08-29 00:43:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 277 ms / 1,000 ms
コード長 1,008 bytes
コンパイル時間 1,174 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 98,356 KB
最終ジャッジ日時 2024-11-14 04:20:21
合計ジャッジ時間 15,172 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
86,672 KB
testcase_01 AC 126 ms
86,288 KB
testcase_02 AC 130 ms
86,592 KB
testcase_03 AC 179 ms
90,500 KB
testcase_04 AC 231 ms
93,860 KB
testcase_05 AC 138 ms
89,124 KB
testcase_06 AC 139 ms
88,852 KB
testcase_07 AC 186 ms
90,900 KB
testcase_08 AC 196 ms
91,660 KB
testcase_09 AC 175 ms
90,068 KB
testcase_10 AC 150 ms
89,312 KB
testcase_11 AC 169 ms
90,308 KB
testcase_12 AC 163 ms
90,356 KB
testcase_13 AC 145 ms
89,360 KB
testcase_14 AC 149 ms
89,240 KB
testcase_15 AC 148 ms
89,352 KB
testcase_16 AC 193 ms
91,932 KB
testcase_17 AC 172 ms
89,876 KB
testcase_18 AC 202 ms
91,796 KB
testcase_19 AC 162 ms
89,648 KB
testcase_20 AC 250 ms
94,472 KB
testcase_21 AC 214 ms
93,008 KB
testcase_22 AC 185 ms
90,444 KB
testcase_23 AC 192 ms
91,100 KB
testcase_24 AC 211 ms
92,400 KB
testcase_25 AC 149 ms
89,524 KB
testcase_26 AC 207 ms
93,044 KB
testcase_27 AC 195 ms
92,104 KB
testcase_28 AC 270 ms
98,012 KB
testcase_29 AC 263 ms
97,944 KB
testcase_30 AC 270 ms
98,128 KB
testcase_31 AC 271 ms
97,940 KB
testcase_32 AC 275 ms
97,912 KB
testcase_33 AC 274 ms
97,940 KB
testcase_34 AC 274 ms
97,928 KB
testcase_35 AC 275 ms
97,784 KB
testcase_36 AC 277 ms
98,008 KB
testcase_37 AC 275 ms
97,984 KB
testcase_38 AC 272 ms
98,136 KB
testcase_39 AC 274 ms
98,356 KB
testcase_40 AC 277 ms
98,128 KB
testcase_41 AC 269 ms
98,244 KB
testcase_42 AC 266 ms
97,748 KB
testcase_43 AC 274 ms
97,844 KB
testcase_44 AC 274 ms
98,236 KB
testcase_45 AC 270 ms
97,928 KB
testcase_46 AC 267 ms
97,944 KB
testcase_47 AC 271 ms
98,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
import collections
import bisect
import itertools
import decimal

# import numpy as np

# sys.setrecursionlimit(10 ** 6)
INF = 10 ** 20
MOD = 10 ** 9 + 7
# MOD = 998244353

ni = lambda: int(sys.stdin.readline().rstrip())
ns = lambda: map(int, sys.stdin.readline().rstrip().split())
na = lambda: list(map(int, sys.stdin.readline().rstrip().split()))
na1 = lambda: list(map(lambda x: int(x) - 1, sys.stdin.readline().rstrip().split()))


# ===CODE===

def main():
    n, m = ns()
    mat = [na() for _ in range(n)]

    res = []
    for i in range(n):
        tmp = 0
        for j in range(m):
            tmp += mat[i][j]
        res.append(tmp)

    dp = [[0] * 2 for _ in range(n + 1)]

    ans = 0
    for i in range(n):
        for j in range(i + 1, n + 1):
            dp[j][0] = max(dp[j][0], dp[i][1] - res[j - 1])
            dp[j][1] = max(dp[j][1], dp[i][0] + res[j - 1])
            ans = max(ans, dp[j][0], dp[j][1])

    print(ans)


if __name__ == '__main__':
    main()
0