結果

問題 No.1199 お菓子配り-2
ユーザー anagohirameanagohirame
提出日時 2020-08-28 21:42:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 1,000 ms
コード長 371 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-11-14 03:06:29
合計ジャッジ時間 9,134 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,544 KB
testcase_01 AC 35 ms
52,088 KB
testcase_02 AC 35 ms
52,988 KB
testcase_03 AC 74 ms
75,444 KB
testcase_04 AC 114 ms
75,792 KB
testcase_05 AC 42 ms
63,404 KB
testcase_06 AC 44 ms
67,024 KB
testcase_07 AC 79 ms
75,296 KB
testcase_08 AC 88 ms
75,300 KB
testcase_09 AC 74 ms
75,228 KB
testcase_10 AC 50 ms
72,548 KB
testcase_11 AC 66 ms
75,472 KB
testcase_12 AC 67 ms
75,296 KB
testcase_13 AC 51 ms
73,164 KB
testcase_14 AC 48 ms
71,460 KB
testcase_15 AC 47 ms
68,636 KB
testcase_16 AC 89 ms
75,160 KB
testcase_17 AC 69 ms
75,156 KB
testcase_18 AC 94 ms
75,704 KB
testcase_19 AC 61 ms
75,528 KB
testcase_20 AC 125 ms
75,848 KB
testcase_21 AC 100 ms
75,956 KB
testcase_22 AC 76 ms
75,484 KB
testcase_23 AC 92 ms
75,332 KB
testcase_24 AC 102 ms
75,740 KB
testcase_25 AC 54 ms
75,240 KB
testcase_26 AC 103 ms
75,728 KB
testcase_27 AC 91 ms
75,636 KB
testcase_28 AC 150 ms
76,544 KB
testcase_29 AC 149 ms
76,128 KB
testcase_30 AC 149 ms
76,244 KB
testcase_31 AC 149 ms
76,164 KB
testcase_32 AC 152 ms
76,272 KB
testcase_33 AC 150 ms
76,464 KB
testcase_34 AC 146 ms
76,060 KB
testcase_35 AC 153 ms
76,336 KB
testcase_36 AC 149 ms
76,052 KB
testcase_37 AC 150 ms
76,428 KB
testcase_38 AC 150 ms
76,492 KB
testcase_39 AC 150 ms
76,396 KB
testcase_40 AC 155 ms
76,036 KB
testcase_41 AC 153 ms
76,264 KB
testcase_42 AC 151 ms
75,944 KB
testcase_43 AC 150 ms
76,132 KB
testcase_44 AC 156 ms
76,180 KB
testcase_45 AC 149 ms
76,300 KB
testcase_46 AC 148 ms
76,484 KB
testcase_47 AC 148 ms
76,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def input():
	return sys.stdin.readline()[:-1]
n, m = map(int, input().split())
a = [sum(list(map(int, input().split()))) for _ in range(n)]
INF = 10**15
dp = [[-INF for _ in range(2)] for _ in range(n+1)]
dp[0][0] = 0
for i in range(1, n+1):
	x = a[i-1]
	dp[i][0] = max(dp[i-1][0], dp[i-1][1] - x)
	dp[i][1] = max(dp[i-1][1], dp[i-1][0] + x)
print(max(dp[n]))
0