結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 49 ms
51,840 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 107 ms
75,300 KB
testcase_04 AC 160 ms
75,708 KB
testcase_05 AC 50 ms
62,940 KB
testcase_06 AC 54 ms
65,672 KB
testcase_07 AC 97 ms
75,516 KB
testcase_08 AC 115 ms
75,520 KB
testcase_09 AC 86 ms
74,968 KB
testcase_10 AC 61 ms
72,832 KB
testcase_11 AC 79 ms
75,136 KB
testcase_12 AC 78 ms
75,444 KB
testcase_13 AC 59 ms
73,012 KB
testcase_14 AC 58 ms
70,784 KB
testcase_15 AC 55 ms
68,560 KB
testcase_16 AC 104 ms
75,312 KB
testcase_17 AC 81 ms
74,924 KB
testcase_18 AC 114 ms
75,648 KB
testcase_19 AC 95 ms
75,136 KB
testcase_20 AC 147 ms
75,784 KB
testcase_21 AC 117 ms
75,520 KB
testcase_22 AC 94 ms
75,648 KB
testcase_23 AC 105 ms
75,648 KB
testcase_24 AC 119 ms
75,372 KB
testcase_25 AC 64 ms
75,520 KB
testcase_26 AC 120 ms
75,572 KB
testcase_27 AC 106 ms
75,376 KB
testcase_28 AC 176 ms
75,740 KB
testcase_29 AC 177 ms
76,012 KB
testcase_30 AC 172 ms
76,632 KB
testcase_31 AC 175 ms
76,256 KB
testcase_32 AC 169 ms
76,236 KB
testcase_33 AC 171 ms
75,712 KB
testcase_34 AC 171 ms
76,500 KB
testcase_35 AC 169 ms
76,088 KB
testcase_36 AC 175 ms
76,164 KB
testcase_37 AC 174 ms
76,592 KB
testcase_38 AC 175 ms
76,168 KB
testcase_39 AC 171 ms
76,488 KB
testcase_40 AC 171 ms
75,992 KB
testcase_41 AC 173 ms
76,400 KB
testcase_42 AC 171 ms
76,260 KB
testcase_43 AC 169 ms
76,068 KB
testcase_44 AC 173 ms
76,300 KB
testcase_45 AC 174 ms
76,480 KB
testcase_46 AC 173 ms
76,576 KB
testcase_47 AC 173 ms
75,956 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