結果

問題 No.1199 お菓子配り-2
ユーザー roarisroaris
提出日時 2020-08-28 21:24:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 1,000 ms
コード長 322 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,624 KB
実行使用メモリ 76,936 KB
最終ジャッジ日時 2024-11-14 02:40:28
合計ジャッジ時間 9,316 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,504 KB
testcase_01 AC 40 ms
54,464 KB
testcase_02 AC 39 ms
54,848 KB
testcase_03 AC 77 ms
75,612 KB
testcase_04 AC 115 ms
75,764 KB
testcase_05 AC 46 ms
65,484 KB
testcase_06 AC 48 ms
68,028 KB
testcase_07 AC 84 ms
75,612 KB
testcase_08 AC 96 ms
75,668 KB
testcase_09 AC 76 ms
75,680 KB
testcase_10 AC 53 ms
73,376 KB
testcase_11 AC 71 ms
75,408 KB
testcase_12 AC 69 ms
75,688 KB
testcase_13 AC 58 ms
75,612 KB
testcase_14 AC 53 ms
73,012 KB
testcase_15 AC 50 ms
69,836 KB
testcase_16 AC 93 ms
75,728 KB
testcase_17 AC 73 ms
75,664 KB
testcase_18 AC 97 ms
75,628 KB
testcase_19 AC 65 ms
75,492 KB
testcase_20 AC 130 ms
76,288 KB
testcase_21 AC 102 ms
75,744 KB
testcase_22 AC 80 ms
75,564 KB
testcase_23 AC 90 ms
75,476 KB
testcase_24 AC 103 ms
75,836 KB
testcase_25 AC 57 ms
75,788 KB
testcase_26 AC 107 ms
76,112 KB
testcase_27 AC 97 ms
76,016 KB
testcase_28 AC 155 ms
76,412 KB
testcase_29 AC 154 ms
76,256 KB
testcase_30 AC 154 ms
76,616 KB
testcase_31 AC 157 ms
76,560 KB
testcase_32 AC 155 ms
76,204 KB
testcase_33 AC 155 ms
76,200 KB
testcase_34 AC 153 ms
76,328 KB
testcase_35 AC 156 ms
76,412 KB
testcase_36 AC 156 ms
76,936 KB
testcase_37 AC 154 ms
76,200 KB
testcase_38 AC 154 ms
76,392 KB
testcase_39 AC 155 ms
76,404 KB
testcase_40 AC 156 ms
76,920 KB
testcase_41 AC 152 ms
76,440 KB
testcase_42 AC 154 ms
76,540 KB
testcase_43 AC 159 ms
76,716 KB
testcase_44 AC 153 ms
76,556 KB
testcase_45 AC 154 ms
76,612 KB
testcase_46 AC 157 ms
76,344 KB
testcase_47 AC 155 ms
76,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N, M = map(int, input().split())
A = [sum(list(map(int, input().split()))) for _ in range(N)]
dp = [[0]*2 for _ in range(N+1)]

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

print(max(dp[N]))
0