結果

問題 No.1199 お菓子配り-2
ユーザー chineristACchineristAC
提出日時 2020-08-28 22:56:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 168 ms / 1,000 ms
コード長 311 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 76,732 KB
最終ジャッジ日時 2024-11-14 03:43:04
合計ジャッジ時間 9,331 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,572 KB
testcase_01 AC 35 ms
52,740 KB
testcase_02 AC 36 ms
52,572 KB
testcase_03 AC 80 ms
75,104 KB
testcase_04 AC 121 ms
75,992 KB
testcase_05 AC 42 ms
64,040 KB
testcase_06 AC 46 ms
66,296 KB
testcase_07 AC 83 ms
75,496 KB
testcase_08 AC 95 ms
75,464 KB
testcase_09 AC 75 ms
75,696 KB
testcase_10 AC 52 ms
72,820 KB
testcase_11 AC 70 ms
75,448 KB
testcase_12 AC 68 ms
75,236 KB
testcase_13 AC 50 ms
73,348 KB
testcase_14 AC 50 ms
72,524 KB
testcase_15 AC 48 ms
69,560 KB
testcase_16 AC 90 ms
75,240 KB
testcase_17 AC 73 ms
75,392 KB
testcase_18 AC 102 ms
75,800 KB
testcase_19 AC 63 ms
75,376 KB
testcase_20 AC 133 ms
75,952 KB
testcase_21 AC 108 ms
75,600 KB
testcase_22 AC 84 ms
75,828 KB
testcase_23 AC 94 ms
75,492 KB
testcase_24 AC 108 ms
75,412 KB
testcase_25 AC 55 ms
75,332 KB
testcase_26 AC 110 ms
75,676 KB
testcase_27 AC 97 ms
75,340 KB
testcase_28 AC 161 ms
76,000 KB
testcase_29 AC 157 ms
76,196 KB
testcase_30 AC 161 ms
76,320 KB
testcase_31 AC 160 ms
76,260 KB
testcase_32 AC 160 ms
76,132 KB
testcase_33 AC 160 ms
76,564 KB
testcase_34 AC 160 ms
76,476 KB
testcase_35 AC 160 ms
76,276 KB
testcase_36 AC 161 ms
76,436 KB
testcase_37 AC 161 ms
75,928 KB
testcase_38 AC 161 ms
76,188 KB
testcase_39 AC 163 ms
76,496 KB
testcase_40 AC 160 ms
76,064 KB
testcase_41 AC 161 ms
76,268 KB
testcase_42 AC 165 ms
76,184 KB
testcase_43 AC 159 ms
76,224 KB
testcase_44 AC 168 ms
76,208 KB
testcase_45 AC 160 ms
76,732 KB
testcase_46 AC 159 ms
76,048 KB
testcase_47 AC 159 ms
76,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dpMax=[0 for i in range(N)]
dpMin=[0 for i in range(N)]
dpMax[-1]=A[-1]
dpMin[-1]=0

for i in range(N-2,-1,-1):
    dpMax[i]=max(dpMax[i+1],A[i]-dpMin[i+1])
    dpMin[i]=min(dpMin[i+1],A[i]-dpMax[i+1])

print(dpMax[0])
0