結果

問題 No.1199 お菓子配り-2
ユーザー marroncastlemarroncastle
提出日時 2020-08-28 22:22:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 779 ms / 1,000 ms
コード長 327 bytes
コンパイル時間 471 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 44,588 KB
最終ジャッジ日時 2024-11-14 03:37:36
合計ジャッジ時間 35,666 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 503 ms
44,584 KB
testcase_01 AC 504 ms
44,588 KB
testcase_02 AC 499 ms
44,076 KB
testcase_03 AC 575 ms
44,332 KB
testcase_04 AC 674 ms
44,204 KB
testcase_05 AC 510 ms
44,324 KB
testcase_06 AC 508 ms
44,336 KB
testcase_07 AC 578 ms
44,072 KB
testcase_08 AC 616 ms
44,340 KB
testcase_09 AC 566 ms
44,192 KB
testcase_10 AC 513 ms
44,076 KB
testcase_11 AC 553 ms
44,336 KB
testcase_12 AC 549 ms
44,080 KB
testcase_13 AC 517 ms
43,944 KB
testcase_14 AC 513 ms
44,212 KB
testcase_15 AC 510 ms
43,948 KB
testcase_16 AC 603 ms
44,468 KB
testcase_17 AC 550 ms
44,336 KB
testcase_18 AC 619 ms
44,080 KB
testcase_19 AC 538 ms
43,944 KB
testcase_20 AC 706 ms
43,944 KB
testcase_21 AC 623 ms
44,204 KB
testcase_22 AC 562 ms
43,944 KB
testcase_23 AC 590 ms
44,332 KB
testcase_24 AC 622 ms
44,084 KB
testcase_25 AC 519 ms
44,080 KB
testcase_26 AC 645 ms
43,948 KB
testcase_27 AC 613 ms
44,328 KB
testcase_28 AC 767 ms
44,456 KB
testcase_29 AC 770 ms
44,328 KB
testcase_30 AC 766 ms
44,328 KB
testcase_31 AC 764 ms
44,088 KB
testcase_32 AC 763 ms
44,076 KB
testcase_33 AC 764 ms
44,584 KB
testcase_34 AC 768 ms
44,332 KB
testcase_35 AC 767 ms
44,460 KB
testcase_36 AC 767 ms
44,080 KB
testcase_37 AC 765 ms
43,944 KB
testcase_38 AC 761 ms
44,320 KB
testcase_39 AC 761 ms
44,076 KB
testcase_40 AC 775 ms
43,944 KB
testcase_41 AC 779 ms
44,464 KB
testcase_42 AC 765 ms
44,208 KB
testcase_43 AC 762 ms
44,328 KB
testcase_44 AC 769 ms
44,328 KB
testcase_45 AC 761 ms
43,944 KB
testcase_46 AC 760 ms
43,944 KB
testcase_47 AC 764 ms
44,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
N, M = map(int, input().split())
A = [sum(map(int, input().split())) for _ in range(N)]
dp1 = A[:]
dp2 = [0]*N
if N>1:
  dp1[1] = max(dp1[1],dp1[0])
  dp2[1] = dp1[0]-A[1]
for i in range(2,N):
  dp1[i] = max([dp1[i],dp1[i-1],dp2[i-1]+A[i]])
  dp2[i] = max(dp1[i-1]-A[i],dp2[i-1])
print(max(dp1[-1],dp2[-1]))
0