結果

問題 No.1199 お菓子配り-2
ユーザー tcltktcltk
提出日時 2021-01-16 08:09:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 247 ms / 1,000 ms
コード長 837 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 90,112 KB
最終ジャッジ日時 2024-05-05 10:53:19
合計ジャッジ時間 17,841 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
88,960 KB
testcase_01 AC 136 ms
89,216 KB
testcase_02 AC 136 ms
88,704 KB
testcase_03 AC 162 ms
89,728 KB
testcase_04 AC 204 ms
89,728 KB
testcase_05 AC 136 ms
89,668 KB
testcase_06 AC 138 ms
89,600 KB
testcase_07 AC 167 ms
89,848 KB
testcase_08 AC 179 ms
89,856 KB
testcase_09 AC 164 ms
89,600 KB
testcase_10 AC 145 ms
89,728 KB
testcase_11 AC 159 ms
89,600 KB
testcase_12 AC 160 ms
89,216 KB
testcase_13 AC 144 ms
89,216 KB
testcase_14 AC 142 ms
89,728 KB
testcase_15 AC 143 ms
89,728 KB
testcase_16 AC 183 ms
89,472 KB
testcase_17 AC 158 ms
89,856 KB
testcase_18 AC 183 ms
89,216 KB
testcase_19 AC 150 ms
89,728 KB
testcase_20 AC 215 ms
89,728 KB
testcase_21 AC 185 ms
89,728 KB
testcase_22 AC 165 ms
89,728 KB
testcase_23 AC 178 ms
89,728 KB
testcase_24 AC 194 ms
89,856 KB
testcase_25 AC 147 ms
89,728 KB
testcase_26 AC 189 ms
89,728 KB
testcase_27 AC 184 ms
89,724 KB
testcase_28 AC 247 ms
89,788 KB
testcase_29 AC 241 ms
89,728 KB
testcase_30 AC 236 ms
89,728 KB
testcase_31 AC 238 ms
89,856 KB
testcase_32 AC 235 ms
89,728 KB
testcase_33 AC 225 ms
89,820 KB
testcase_34 AC 227 ms
89,468 KB
testcase_35 AC 235 ms
90,112 KB
testcase_36 AC 231 ms
89,856 KB
testcase_37 AC 243 ms
89,728 KB
testcase_38 AC 240 ms
89,728 KB
testcase_39 AC 237 ms
89,728 KB
testcase_40 AC 230 ms
89,728 KB
testcase_41 AC 241 ms
90,088 KB
testcase_42 AC 245 ms
89,824 KB
testcase_43 AC 231 ms
89,856 KB
testcase_44 AC 227 ms
89,728 KB
testcase_45 AC 241 ms
89,856 KB
testcase_46 AC 235 ms
89,984 KB
testcase_47 AC 234 ms
89,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """# paste here...
# """
# sys.stdin = io.StringIO(_INPUT)


def main():
    N, M = map(int, input().split())
    s = []
    for _ in range(N):
        s.append(sum(list(map(int, input().split()))))

    dp = [[0, 0] for _ in range(N)]
    dp[0][0] = 0
    dp[0][1] = s[0]
    for i in range(1, N):
        dp[i][0] = max(dp[i-1][0], dp[i-1][1] - s[i])
        dp[i][1] = max(dp[i-1][1], dp[i-1][0] + s[i])

    v = max(dp[N-1])
    print(v)


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