結果

問題 No.1199 お菓子配り-2
ユーザー ntudantuda
提出日時 2024-05-28 22:33:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 193 ms / 1,000 ms
コード長 283 bytes
コンパイル時間 1,002 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,292 KB
最終ジャッジ日時 2024-12-20 20:55:24
合計ジャッジ時間 16,295 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 96 ms
75,264 KB
testcase_04 AC 149 ms
75,520 KB
testcase_05 AC 53 ms
62,464 KB
testcase_06 AC 57 ms
66,048 KB
testcase_07 AC 102 ms
75,192 KB
testcase_08 AC 114 ms
74,972 KB
testcase_09 AC 92 ms
75,300 KB
testcase_10 AC 65 ms
72,448 KB
testcase_11 AC 85 ms
75,264 KB
testcase_12 AC 88 ms
75,116 KB
testcase_13 AC 65 ms
73,376 KB
testcase_14 AC 63 ms
71,168 KB
testcase_15 AC 61 ms
68,480 KB
testcase_16 AC 110 ms
75,264 KB
testcase_17 AC 86 ms
75,392 KB
testcase_18 AC 119 ms
75,296 KB
testcase_19 AC 78 ms
75,220 KB
testcase_20 AC 156 ms
75,776 KB
testcase_21 AC 128 ms
75,292 KB
testcase_22 AC 102 ms
75,604 KB
testcase_23 AC 117 ms
75,212 KB
testcase_24 AC 128 ms
75,972 KB
testcase_25 AC 70 ms
75,104 KB
testcase_26 AC 127 ms
75,288 KB
testcase_27 AC 112 ms
74,896 KB
testcase_28 AC 193 ms
75,904 KB
testcase_29 AC 189 ms
76,032 KB
testcase_30 AC 189 ms
75,888 KB
testcase_31 AC 188 ms
76,288 KB
testcase_32 AC 181 ms
76,084 KB
testcase_33 AC 184 ms
75,904 KB
testcase_34 AC 182 ms
75,952 KB
testcase_35 AC 183 ms
76,080 KB
testcase_36 AC 186 ms
75,904 KB
testcase_37 AC 180 ms
75,864 KB
testcase_38 AC 188 ms
76,160 KB
testcase_39 AC 180 ms
75,736 KB
testcase_40 AC 185 ms
76,292 KB
testcase_41 AC 188 ms
76,244 KB
testcase_42 AC 191 ms
76,288 KB
testcase_43 AC 182 ms
76,160 KB
testcase_44 AC 182 ms
76,288 KB
testcase_45 AC 182 ms
75,916 KB
testcase_46 AC 181 ms
75,852 KB
testcase_47 AC 182 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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