結果

問題 No.1199 お菓子配り-2
ユーザー NoaSaberNoaSaber
提出日時 2021-04-08 14:39:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 166 ms / 1,000 ms
コード長 367 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 77,112 KB
最終ジャッジ日時 2024-06-23 18:15:03
合計ジャッジ時間 13,801 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,612 KB
testcase_01 AC 35 ms
52,444 KB
testcase_02 AC 38 ms
53,152 KB
testcase_03 AC 86 ms
75,796 KB
testcase_04 AC 142 ms
76,100 KB
testcase_05 AC 47 ms
61,440 KB
testcase_06 AC 51 ms
63,872 KB
testcase_07 AC 94 ms
74,888 KB
testcase_08 AC 104 ms
74,968 KB
testcase_09 AC 87 ms
75,576 KB
testcase_10 AC 59 ms
70,280 KB
testcase_11 AC 71 ms
75,080 KB
testcase_12 AC 67 ms
74,812 KB
testcase_13 AC 49 ms
70,584 KB
testcase_14 AC 50 ms
67,668 KB
testcase_15 AC 48 ms
67,104 KB
testcase_16 AC 91 ms
75,580 KB
testcase_17 AC 72 ms
74,968 KB
testcase_18 AC 106 ms
76,228 KB
testcase_19 AC 63 ms
75,500 KB
testcase_20 AC 132 ms
76,680 KB
testcase_21 AC 110 ms
76,664 KB
testcase_22 AC 87 ms
76,048 KB
testcase_23 AC 96 ms
75,924 KB
testcase_24 AC 107 ms
76,308 KB
testcase_25 AC 52 ms
70,936 KB
testcase_26 AC 107 ms
75,876 KB
testcase_27 AC 95 ms
74,948 KB
testcase_28 AC 154 ms
76,440 KB
testcase_29 AC 158 ms
76,372 KB
testcase_30 AC 166 ms
76,832 KB
testcase_31 AC 156 ms
76,756 KB
testcase_32 AC 157 ms
77,112 KB
testcase_33 AC 152 ms
76,632 KB
testcase_34 AC 155 ms
76,600 KB
testcase_35 AC 154 ms
76,984 KB
testcase_36 AC 155 ms
76,816 KB
testcase_37 AC 158 ms
76,856 KB
testcase_38 AC 159 ms
76,840 KB
testcase_39 AC 155 ms
76,512 KB
testcase_40 AC 153 ms
76,768 KB
testcase_41 AC 158 ms
76,380 KB
testcase_42 AC 165 ms
76,620 KB
testcase_43 AC 160 ms
76,508 KB
testcase_44 AC 157 ms
76,588 KB
testcase_45 AC 158 ms
76,780 KB
testcase_46 AC 157 ms
76,636 KB
testcase_47 AC 158 ms
76,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
l=[]
inf=float("inf")
dp=[[-inf]*(2) for i in range(N+1)]
for i in range(N):
    tmp=map( int,input().split())
    l.append(sum(tmp))
dp[0][0]=0
for i in range(N):
    for j in range(2):
        dp[i+1][j]=max(dp[i][j],dp[i+1][j])
    dp[i+1][1]=max(dp[i+1][0]+l[i],dp[i+1][1])
    dp[i+1][0]=max(dp[i][1]-l[i],dp[i+1][0])
print(dp[N][1])
0