結果

問題 No.1199 お菓子配り-2
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-09-10 12:46:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 375 ms / 1,000 ms
コード長 468 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 51,200 KB
最終ジャッジ日時 2024-05-04 23:36:57
合計ジャッジ時間 17,234 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 35 ms
10,880 KB
testcase_03 AC 108 ms
20,864 KB
testcase_04 AC 230 ms
36,480 KB
testcase_05 AC 33 ms
11,776 KB
testcase_06 AC 43 ms
12,288 KB
testcase_07 AC 121 ms
23,168 KB
testcase_08 AC 159 ms
27,776 KB
testcase_09 AC 107 ms
20,992 KB
testcase_10 AC 45 ms
13,440 KB
testcase_11 AC 88 ms
18,816 KB
testcase_12 AC 86 ms
18,560 KB
testcase_13 AC 48 ms
13,568 KB
testcase_14 AC 44 ms
13,184 KB
testcase_15 AC 42 ms
12,800 KB
testcase_16 AC 151 ms
27,136 KB
testcase_17 AC 90 ms
18,816 KB
testcase_18 AC 164 ms
28,672 KB
testcase_19 AC 63 ms
15,360 KB
testcase_20 AC 258 ms
41,728 KB
testcase_21 AC 178 ms
30,336 KB
testcase_22 AC 118 ms
20,864 KB
testcase_23 AC 138 ms
24,704 KB
testcase_24 AC 185 ms
30,720 KB
testcase_25 AC 51 ms
13,824 KB
testcase_26 AC 200 ms
32,640 KB
testcase_27 AC 164 ms
28,672 KB
testcase_28 AC 339 ms
51,200 KB
testcase_29 AC 349 ms
51,200 KB
testcase_30 AC 343 ms
51,200 KB
testcase_31 AC 335 ms
51,200 KB
testcase_32 AC 375 ms
51,200 KB
testcase_33 AC 334 ms
51,200 KB
testcase_34 AC 334 ms
51,200 KB
testcase_35 AC 336 ms
51,200 KB
testcase_36 AC 334 ms
51,200 KB
testcase_37 AC 337 ms
51,200 KB
testcase_38 AC 343 ms
51,200 KB
testcase_39 AC 338 ms
51,200 KB
testcase_40 AC 337 ms
51,200 KB
testcase_41 AC 337 ms
51,200 KB
testcase_42 AC 338 ms
51,072 KB
testcase_43 AC 340 ms
51,200 KB
testcase_44 AC 344 ms
51,200 KB
testcase_45 AC 337 ms
51,200 KB
testcase_46 AC 337 ms
51,200 KB
testcase_47 AC 335 ms
51,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import math,sys
input = sys.stdin.readline

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

dp = [[0]*N for _ in range(2)]
dp[1][0] = C[0]
for i in range(N-1):
    
    
    dp[0][i+1] = max(dp[0][i],-C[i+1]+dp[1][i])
    dp[1][i+1] = max(dp[1][i],C[i+1]+dp[0][i])
    
print(max(dp[0][-1],dp[1][-1]))
0