結果

問題 No.1199 お菓子配り-2
ユーザー uni_pythonuni_python
提出日時 2020-08-28 21:54:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 173 ms / 1,000 ms
コード長 732 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 77,112 KB
最終ジャッジ日時 2024-11-14 03:27:08
合計ジャッジ時間 9,800 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,268 KB
testcase_01 AC 38 ms
52,404 KB
testcase_02 AC 37 ms
52,216 KB
testcase_03 AC 86 ms
76,136 KB
testcase_04 AC 128 ms
76,204 KB
testcase_05 AC 44 ms
62,736 KB
testcase_06 AC 51 ms
68,352 KB
testcase_07 AC 90 ms
75,748 KB
testcase_08 AC 102 ms
76,396 KB
testcase_09 AC 83 ms
75,876 KB
testcase_10 AC 61 ms
75,792 KB
testcase_11 AC 78 ms
75,968 KB
testcase_12 AC 75 ms
75,620 KB
testcase_13 AC 59 ms
75,680 KB
testcase_14 AC 56 ms
74,372 KB
testcase_15 AC 52 ms
70,488 KB
testcase_16 AC 98 ms
76,616 KB
testcase_17 AC 78 ms
75,916 KB
testcase_18 AC 107 ms
75,732 KB
testcase_19 AC 69 ms
75,880 KB
testcase_20 AC 144 ms
76,388 KB
testcase_21 AC 120 ms
76,212 KB
testcase_22 AC 93 ms
75,916 KB
testcase_23 AC 105 ms
76,072 KB
testcase_24 AC 117 ms
75,984 KB
testcase_25 AC 60 ms
75,736 KB
testcase_26 AC 116 ms
76,156 KB
testcase_27 AC 101 ms
76,016 KB
testcase_28 AC 169 ms
76,176 KB
testcase_29 AC 166 ms
76,460 KB
testcase_30 AC 169 ms
76,512 KB
testcase_31 AC 166 ms
76,432 KB
testcase_32 AC 168 ms
77,112 KB
testcase_33 AC 173 ms
76,568 KB
testcase_34 AC 167 ms
76,376 KB
testcase_35 AC 172 ms
76,568 KB
testcase_36 AC 166 ms
76,660 KB
testcase_37 AC 166 ms
76,692 KB
testcase_38 AC 169 ms
76,696 KB
testcase_39 AC 169 ms
76,668 KB
testcase_40 AC 171 ms
76,632 KB
testcase_41 AC 166 ms
76,572 KB
testcase_42 AC 165 ms
76,724 KB
testcase_43 AC 165 ms
76,744 KB
testcase_44 AC 165 ms
76,368 KB
testcase_45 AC 165 ms
76,584 KB
testcase_46 AC 169 ms
76,580 KB
testcase_47 AC 167 ms
76,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    mod=10**9+7
    N,M=MI()
    A=[0]*N
    for i in range(N):
        a=LI()
        A[i]=sum(a)
    
    dp=[[0]*3 for _ in range(N)]
    # dp[i][j]はi個目まで見た時のmax,j=0,1でi個目が+,-
    
    dp[0][0]=A[0]
    
    for i in range(1,N):
        
        
        for j in range(i):
            dp[i][0]=max(dp[i][0], dp[j][1]+A[i],A[i])
            dp[i][1]=max(dp[i][1], dp[j][0]-A[i])
            

    ans=0
    for i in range(N):
        ans=max(ans,dp[i][0])
        
    print(ans)
        
        
        
            
    


main()
0