結果

問題 No.1199 お菓子配り-2
ユーザー toyuzukotoyuzuko
提出日時 2020-08-30 10:59:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 215 ms / 1,000 ms
コード長 474 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 84,608 KB
最終ジャッジ日時 2024-11-14 18:08:11
合計ジャッジ時間 10,958 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,968 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 112 ms
75,776 KB
testcase_04 AC 178 ms
83,200 KB
testcase_05 AC 46 ms
61,312 KB
testcase_06 AC 65 ms
69,504 KB
testcase_07 AC 102 ms
77,712 KB
testcase_08 AC 127 ms
75,904 KB
testcase_09 AC 103 ms
75,904 KB
testcase_10 AC 78 ms
75,520 KB
testcase_11 AC 101 ms
76,800 KB
testcase_12 AC 91 ms
75,776 KB
testcase_13 AC 77 ms
75,904 KB
testcase_14 AC 66 ms
74,112 KB
testcase_15 AC 62 ms
72,192 KB
testcase_16 AC 109 ms
76,288 KB
testcase_17 AC 95 ms
77,824 KB
testcase_18 AC 142 ms
81,792 KB
testcase_19 AC 86 ms
75,776 KB
testcase_20 AC 171 ms
76,288 KB
testcase_21 AC 151 ms
76,436 KB
testcase_22 AC 121 ms
76,408 KB
testcase_23 AC 131 ms
75,880 KB
testcase_24 AC 148 ms
77,184 KB
testcase_25 AC 70 ms
76,288 KB
testcase_26 AC 135 ms
76,032 KB
testcase_27 AC 116 ms
76,136 KB
testcase_28 AC 209 ms
84,356 KB
testcase_29 AC 207 ms
84,276 KB
testcase_30 AC 206 ms
83,840 KB
testcase_31 AC 207 ms
84,608 KB
testcase_32 AC 209 ms
84,564 KB
testcase_33 AC 206 ms
83,968 KB
testcase_34 AC 208 ms
84,224 KB
testcase_35 AC 205 ms
83,968 KB
testcase_36 AC 210 ms
84,480 KB
testcase_37 AC 207 ms
83,968 KB
testcase_38 AC 209 ms
84,224 KB
testcase_39 AC 215 ms
84,232 KB
testcase_40 AC 204 ms
84,352 KB
testcase_41 AC 206 ms
84,444 KB
testcase_42 AC 207 ms
84,480 KB
testcase_43 AC 205 ms
84,548 KB
testcase_44 AC 206 ms
84,352 KB
testcase_45 AC 207 ms
83,968 KB
testcase_46 AC 205 ms
83,968 KB
testcase_47 AC 207 ms
83,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 10**18

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

dp = [[-INF for j in range(N + 1)] for i in range(N + 1)]

for i in range(N + 1):
    dp[i][0] = 0

for i in range(1, N + 1):
    for j in range(1, N + 1):
        if j % 2 == 0:
            dp[i][j] = max(dp[i][j], dp[i - 1][j], dp[i - 1][j - 1] - A[i - 1])
        else:
            dp[i][j] = max(dp[i][j], dp[i - 1][j], dp[i - 1][j - 1] + A[i - 1])

print(max(dp[N]))
0