結果

問題 No.1199 お菓子配り-2
ユーザー ああいいああいい
提出日時 2022-03-04 13:25:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 308 ms / 1,000 ms
コード長 308 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 84,992 KB
最終ジャッジ日時 2024-07-18 10:25:43
合計ジャッジ時間 13,888 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,456 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 93 ms
76,672 KB
testcase_04 AC 145 ms
81,152 KB
testcase_05 AC 51 ms
62,336 KB
testcase_06 AC 54 ms
65,920 KB
testcase_07 AC 97 ms
77,440 KB
testcase_08 AC 111 ms
78,208 KB
testcase_09 AC 91 ms
76,160 KB
testcase_10 AC 63 ms
72,704 KB
testcase_11 AC 84 ms
76,544 KB
testcase_12 AC 84 ms
76,544 KB
testcase_13 AC 63 ms
73,216 KB
testcase_14 AC 62 ms
71,168 KB
testcase_15 AC 59 ms
68,352 KB
testcase_16 AC 113 ms
78,336 KB
testcase_17 AC 89 ms
76,800 KB
testcase_18 AC 124 ms
78,592 KB
testcase_19 AC 78 ms
75,904 KB
testcase_20 AC 180 ms
81,280 KB
testcase_21 AC 126 ms
79,360 KB
testcase_22 AC 102 ms
77,056 KB
testcase_23 AC 113 ms
77,824 KB
testcase_24 AC 127 ms
79,104 KB
testcase_25 AC 69 ms
75,648 KB
testcase_26 AC 130 ms
80,128 KB
testcase_27 AC 115 ms
77,824 KB
testcase_28 AC 185 ms
84,736 KB
testcase_29 AC 183 ms
84,736 KB
testcase_30 AC 185 ms
84,480 KB
testcase_31 AC 185 ms
84,608 KB
testcase_32 AC 182 ms
84,736 KB
testcase_33 AC 190 ms
84,736 KB
testcase_34 AC 175 ms
84,692 KB
testcase_35 AC 174 ms
84,736 KB
testcase_36 AC 175 ms
84,856 KB
testcase_37 AC 192 ms
84,660 KB
testcase_38 AC 219 ms
84,736 KB
testcase_39 AC 244 ms
84,608 KB
testcase_40 AC 308 ms
84,992 KB
testcase_41 AC 187 ms
84,736 KB
testcase_42 AC 184 ms
84,224 KB
testcase_43 AC 188 ms
84,480 KB
testcase_44 AC 185 ms
84,736 KB
testcase_45 AC 182 ms
84,608 KB
testcase_46 AC 185 ms
84,224 KB
testcase_47 AC 184 ms
84,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
A = [list(map(int,input().split())) for _ in range(N)]
B = [sum(A[i]) for i in range(N)]

dp = [[0] * 2 for _ in range(N)]
dp[0][1] = B[0]
for i in range(1,N):
    dp[i][0] = max(dp[i-1][1] - B[i],dp[i-1][0])
    dp[i][1] = max(dp[i-1][0] + B[i],dp[i-1][1])
print(max(dp[-1]))
0