結果

問題 No.1199 お菓子配り-2
ユーザー marroncastlemarroncastle
提出日時 2020-08-28 21:42:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 299 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,576 KB
最終ジャッジ日時 2024-11-14 03:07:08
合計ジャッジ時間 35,887 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 504 ms
44,188 KB
testcase_01 AC 501 ms
44,192 KB
testcase_02 AC 502 ms
44,320 KB
testcase_03 AC 568 ms
43,932 KB
testcase_04 AC 668 ms
44,188 KB
testcase_05 WA -
testcase_06 AC 512 ms
44,236 KB
testcase_07 WA -
testcase_08 AC 617 ms
43,936 KB
testcase_09 WA -
testcase_10 AC 525 ms
44,056 KB
testcase_11 AC 562 ms
44,064 KB
testcase_12 AC 550 ms
43,936 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 514 ms
44,060 KB
testcase_16 AC 609 ms
44,320 KB
testcase_17 AC 553 ms
43,932 KB
testcase_18 AC 621 ms
43,928 KB
testcase_19 AC 534 ms
44,316 KB
testcase_20 AC 705 ms
44,440 KB
testcase_21 AC 631 ms
44,312 KB
testcase_22 AC 576 ms
43,940 KB
testcase_23 WA -
testcase_24 AC 635 ms
43,940 KB
testcase_25 AC 519 ms
44,576 KB
testcase_26 AC 645 ms
44,188 KB
testcase_27 AC 615 ms
44,036 KB
testcase_28 AC 764 ms
44,056 KB
testcase_29 WA -
testcase_30 AC 769 ms
43,928 KB
testcase_31 AC 767 ms
44,308 KB
testcase_32 AC 769 ms
44,180 KB
testcase_33 AC 771 ms
43,932 KB
testcase_34 AC 773 ms
43,944 KB
testcase_35 AC 779 ms
44,376 KB
testcase_36 AC 772 ms
44,312 KB
testcase_37 AC 767 ms
44,052 KB
testcase_38 AC 768 ms
43,924 KB
testcase_39 AC 772 ms
44,056 KB
testcase_40 WA -
testcase_41 AC 770 ms
44,188 KB
testcase_42 AC 782 ms
44,308 KB
testcase_43 AC 786 ms
44,064 KB
testcase_44 WA -
testcase_45 AC 777 ms
43,932 KB
testcase_46 WA -
testcase_47 WA -
権限があれば一括ダウンロードができます

ソースコード

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:
  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