結果

問題 No.1199 お菓子配り-2
ユーザー flippergoflippergo
提出日時 2021-01-05 00:31:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 188 ms / 1,000 ms
コード長 399 bytes
コンパイル時間 652 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-10-15 09:10:02
合計ジャッジ時間 14,389 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,584 KB
testcase_01 AC 42 ms
51,584 KB
testcase_02 AC 41 ms
51,584 KB
testcase_03 AC 92 ms
75,136 KB
testcase_04 AC 140 ms
75,776 KB
testcase_05 AC 49 ms
62,592 KB
testcase_06 AC 54 ms
66,048 KB
testcase_07 AC 96 ms
75,136 KB
testcase_08 AC 110 ms
75,136 KB
testcase_09 AC 90 ms
75,648 KB
testcase_10 AC 64 ms
72,832 KB
testcase_11 AC 84 ms
75,264 KB
testcase_12 AC 82 ms
74,880 KB
testcase_13 AC 62 ms
73,088 KB
testcase_14 AC 62 ms
71,040 KB
testcase_15 AC 58 ms
68,480 KB
testcase_16 AC 108 ms
75,136 KB
testcase_17 AC 86 ms
75,008 KB
testcase_18 AC 114 ms
75,776 KB
testcase_19 AC 74 ms
75,008 KB
testcase_20 AC 149 ms
75,520 KB
testcase_21 AC 119 ms
75,136 KB
testcase_22 AC 97 ms
75,520 KB
testcase_23 AC 110 ms
75,520 KB
testcase_24 AC 118 ms
75,520 KB
testcase_25 AC 68 ms
74,752 KB
testcase_26 AC 121 ms
75,008 KB
testcase_27 AC 108 ms
75,136 KB
testcase_28 AC 170 ms
76,032 KB
testcase_29 AC 182 ms
76,160 KB
testcase_30 AC 180 ms
75,776 KB
testcase_31 AC 178 ms
75,904 KB
testcase_32 AC 169 ms
76,288 KB
testcase_33 AC 173 ms
76,288 KB
testcase_34 AC 174 ms
75,904 KB
testcase_35 AC 180 ms
76,160 KB
testcase_36 AC 176 ms
76,416 KB
testcase_37 AC 176 ms
76,288 KB
testcase_38 AC 183 ms
76,032 KB
testcase_39 AC 188 ms
76,288 KB
testcase_40 AC 182 ms
75,904 KB
testcase_41 AC 187 ms
76,032 KB
testcase_42 AC 184 ms
76,032 KB
testcase_43 AC 181 ms
75,776 KB
testcase_44 AC 179 ms
75,904 KB
testcase_45 AC 177 ms
75,776 KB
testcase_46 AC 178 ms
76,288 KB
testcase_47 AC 187 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
A = [0 for _ in range(N)]
for i in range(N):
    a = sum(list(map(int,input().split())))
    A[i] = a
A.insert(0,0)
dp = [[0 for _ in range(2)] for _ in range(N+1)]
for i in range(2,N+1):
    dp[i][0] = dp[i-1][1]+A[i-1]
    dp[i][0] = max(dp[i][0],dp[i-1][0])
    dp[i][1] = dp[i-1][0]-A[i-1]
    dp[i][1] = max(dp[i][1],dp[i-1][1])
print(max(dp[N][0],dp[N][1]+A[N]))
0