結果

問題 No.1199 お菓子配り-2
ユーザー tobusakanatobusakana
提出日時 2022-11-26 13:25:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 185 ms / 1,000 ms
コード長 552 bytes
コンパイル時間 585 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,536 KB
最終ジャッジ日時 2024-10-02 16:28:01
合計ジャッジ時間 12,555 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,456 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 90 ms
75,136 KB
testcase_04 AC 140 ms
75,904 KB
testcase_05 AC 51 ms
62,464 KB
testcase_06 AC 48 ms
65,792 KB
testcase_07 AC 94 ms
75,520 KB
testcase_08 AC 107 ms
75,392 KB
testcase_09 AC 89 ms
75,648 KB
testcase_10 AC 54 ms
72,704 KB
testcase_11 AC 78 ms
75,136 KB
testcase_12 AC 97 ms
75,264 KB
testcase_13 AC 54 ms
73,216 KB
testcase_14 AC 54 ms
71,168 KB
testcase_15 AC 51 ms
68,480 KB
testcase_16 AC 99 ms
75,136 KB
testcase_17 AC 79 ms
75,264 KB
testcase_18 AC 112 ms
75,648 KB
testcase_19 AC 68 ms
75,088 KB
testcase_20 AC 148 ms
75,904 KB
testcase_21 AC 117 ms
75,560 KB
testcase_22 AC 94 ms
75,520 KB
testcase_23 AC 108 ms
76,032 KB
testcase_24 AC 120 ms
75,868 KB
testcase_25 AC 61 ms
75,520 KB
testcase_26 AC 117 ms
75,392 KB
testcase_27 AC 101 ms
75,284 KB
testcase_28 AC 174 ms
76,052 KB
testcase_29 AC 164 ms
75,904 KB
testcase_30 AC 182 ms
75,776 KB
testcase_31 AC 182 ms
75,936 KB
testcase_32 AC 172 ms
75,904 KB
testcase_33 AC 170 ms
76,288 KB
testcase_34 AC 174 ms
76,248 KB
testcase_35 AC 173 ms
76,048 KB
testcase_36 AC 185 ms
75,988 KB
testcase_37 AC 183 ms
75,916 KB
testcase_38 AC 184 ms
76,288 KB
testcase_39 AC 181 ms
75,776 KB
testcase_40 AC 178 ms
76,032 KB
testcase_41 AC 181 ms
76,332 KB
testcase_42 AC 175 ms
75,976 KB
testcase_43 AC 181 ms
76,032 KB
testcase_44 AC 170 ms
76,536 KB
testcase_45 AC 183 ms
76,288 KB
testcase_46 AC 182 ms
75,904 KB
testcase_47 AC 184 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
INF = 1 << 60
dp = [-INF] * 2 # 次に食べるのが1:増加の場合,0:減少 の場合の最大幸福度
dp[1] = 0

for i in range(N):
  val = sum(list(map(int,input().split())))
  new_dp = [-INF] * 2
  # 次が増加の場合の食べる場合と食べない場合
  # 食べるとdp[1]である
  new_dp[0] = max(new_dp[0], dp[1] + val)
  new_dp[1] = max(new_dp[1], dp[1])
  
  # 次が減少の場合
  new_dp[1] = max(new_dp[1], dp[0] - val)
  new_dp[0] = max(new_dp[0], dp[0])
  
  dp = new_dp
  
print(max(dp))
0