結果

問題 No.1199 お菓子配り-2
ユーザー neterukunneterukun
提出日時 2020-08-28 21:35:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 300 ms / 1,000 ms
コード長 570 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 112,468 KB
最終ジャッジ日時 2024-11-14 02:58:07
合計ジャッジ時間 13,490 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,336 KB
testcase_01 AC 36 ms
53,292 KB
testcase_02 AC 36 ms
53,076 KB
testcase_03 AC 139 ms
86,648 KB
testcase_04 AC 231 ms
100,716 KB
testcase_05 AC 43 ms
63,788 KB
testcase_06 AC 63 ms
73,784 KB
testcase_07 AC 130 ms
81,048 KB
testcase_08 AC 154 ms
87,496 KB
testcase_09 AC 114 ms
79,888 KB
testcase_10 AC 80 ms
77,036 KB
testcase_11 AC 107 ms
80,112 KB
testcase_12 AC 95 ms
77,912 KB
testcase_13 AC 76 ms
76,732 KB
testcase_14 AC 80 ms
77,268 KB
testcase_15 AC 77 ms
76,824 KB
testcase_16 AC 139 ms
81,792 KB
testcase_17 AC 124 ms
81,932 KB
testcase_18 AC 212 ms
100,832 KB
testcase_19 AC 111 ms
80,112 KB
testcase_20 AC 241 ms
100,380 KB
testcase_21 AC 237 ms
107,016 KB
testcase_22 AC 190 ms
98,280 KB
testcase_23 AC 198 ms
100,332 KB
testcase_24 AC 211 ms
98,208 KB
testcase_25 AC 81 ms
77,116 KB
testcase_26 AC 174 ms
87,448 KB
testcase_27 AC 141 ms
81,700 KB
testcase_28 AC 294 ms
112,080 KB
testcase_29 AC 294 ms
112,080 KB
testcase_30 AC 296 ms
111,988 KB
testcase_31 AC 300 ms
111,680 KB
testcase_32 AC 294 ms
111,912 KB
testcase_33 AC 297 ms
111,464 KB
testcase_34 AC 298 ms
112,068 KB
testcase_35 AC 296 ms
111,988 KB
testcase_36 AC 295 ms
111,840 KB
testcase_37 AC 295 ms
112,036 KB
testcase_38 AC 300 ms
111,964 KB
testcase_39 AC 297 ms
111,688 KB
testcase_40 AC 294 ms
112,036 KB
testcase_41 AC 292 ms
112,156 KB
testcase_42 AC 292 ms
112,444 KB
testcase_43 AC 297 ms
112,056 KB
testcase_44 AC 292 ms
112,468 KB
testcase_45 AC 291 ms
112,288 KB
testcase_46 AC 292 ms
112,044 KB
testcase_47 AC 294 ms
111,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
a = [list(map(int, input().split())) for i in range(n)]
INF = 10 ** 22


b = [sum(a[i]) for i in range(n)]


dp = [[-INF] * (n + 1) for i in range(n + 1)]
dp[0][0] = 0

for i in range(n):
    val = b[i]
    for j in range(n + 1):
        dp[i + 1][j] = max(dp[i][j], dp[i + 1][j])
        if j + 1 > n:
            continue
        if (j + 1) % 2 == 1:
            dp[i + 1][j + 1] = max(dp[i][j] + val, dp[i + 1][j + 1])
        else:
            dp[i + 1][j + 1] = max(dp[i][j] - val, dp[i + 1][j + 1])
            

print(max(dp[-1]))
0