結果

問題 No.1199 お菓子配り-2
ユーザー O2MTO2MT
提出日時 2020-12-16 00:02:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 170 ms / 1,000 ms
コード長 334 bytes
コンパイル時間 865 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,596 KB
最終ジャッジ日時 2024-09-20 02:35:06
合計ジャッジ時間 10,399 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 86 ms
75,136 KB
testcase_04 AC 129 ms
75,520 KB
testcase_05 AC 44 ms
62,464 KB
testcase_06 AC 47 ms
65,408 KB
testcase_07 AC 92 ms
75,240 KB
testcase_08 AC 95 ms
75,392 KB
testcase_09 AC 77 ms
75,276 KB
testcase_10 AC 53 ms
72,832 KB
testcase_11 AC 73 ms
74,880 KB
testcase_12 AC 77 ms
74,880 KB
testcase_13 AC 51 ms
73,088 KB
testcase_14 AC 52 ms
70,912 KB
testcase_15 AC 49 ms
68,480 KB
testcase_16 AC 101 ms
75,520 KB
testcase_17 AC 75 ms
75,264 KB
testcase_18 AC 109 ms
75,760 KB
testcase_19 AC 68 ms
75,240 KB
testcase_20 AC 139 ms
75,996 KB
testcase_21 AC 121 ms
76,148 KB
testcase_22 AC 90 ms
75,776 KB
testcase_23 AC 99 ms
75,776 KB
testcase_24 AC 114 ms
75,520 KB
testcase_25 AC 56 ms
75,036 KB
testcase_26 AC 108 ms
75,484 KB
testcase_27 AC 98 ms
75,648 KB
testcase_28 AC 162 ms
76,032 KB
testcase_29 AC 164 ms
76,160 KB
testcase_30 AC 161 ms
76,556 KB
testcase_31 AC 161 ms
76,244 KB
testcase_32 AC 158 ms
76,032 KB
testcase_33 AC 160 ms
76,252 KB
testcase_34 AC 160 ms
76,336 KB
testcase_35 AC 158 ms
76,416 KB
testcase_36 AC 170 ms
76,344 KB
testcase_37 AC 162 ms
76,288 KB
testcase_38 AC 163 ms
76,544 KB
testcase_39 AC 157 ms
76,484 KB
testcase_40 AC 163 ms
76,288 KB
testcase_41 AC 167 ms
76,544 KB
testcase_42 AC 166 ms
76,252 KB
testcase_43 AC 164 ms
76,232 KB
testcase_44 AC 158 ms
76,288 KB
testcase_45 AC 162 ms
75,936 KB
testcase_46 AC 159 ms
76,508 KB
testcase_47 AC 166 ms
76,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

print(max(dp[N]))
0