結果

問題 No.1199 お菓子配り-2
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-09-10 12:46:57
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 363 ms / 1,000 ms
コード長 468 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 51,200 KB
最終ジャッジ日時 2024-11-26 14:25:26
合計ジャッジ時間 17,588 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
10,624 KB
testcase_01 AC 34 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 115 ms
20,736 KB
testcase_04 AC 241 ms
36,352 KB
testcase_05 AC 38 ms
11,520 KB
testcase_06 AC 42 ms
12,288 KB
testcase_07 AC 131 ms
23,168 KB
testcase_08 AC 167 ms
27,648 KB
testcase_09 AC 113 ms
20,864 KB
testcase_10 AC 51 ms
13,312 KB
testcase_11 AC 95 ms
18,688 KB
testcase_12 AC 91 ms
18,432 KB
testcase_13 AC 52 ms
13,312 KB
testcase_14 AC 49 ms
13,056 KB
testcase_15 AC 46 ms
12,672 KB
testcase_16 AC 160 ms
27,008 KB
testcase_17 AC 95 ms
18,688 KB
testcase_18 AC 171 ms
28,544 KB
testcase_19 AC 68 ms
15,104 KB
testcase_20 AC 276 ms
41,472 KB
testcase_21 AC 190 ms
30,208 KB
testcase_22 AC 114 ms
20,736 KB
testcase_23 AC 148 ms
24,704 KB
testcase_24 AC 192 ms
30,592 KB
testcase_25 AC 55 ms
13,696 KB
testcase_26 AC 206 ms
32,512 KB
testcase_27 AC 176 ms
28,416 KB
testcase_28 AC 358 ms
51,072 KB
testcase_29 AC 359 ms
51,072 KB
testcase_30 AC 360 ms
51,072 KB
testcase_31 AC 363 ms
51,072 KB
testcase_32 AC 362 ms
50,944 KB
testcase_33 AC 357 ms
51,072 KB
testcase_34 AC 360 ms
51,200 KB
testcase_35 AC 357 ms
51,072 KB
testcase_36 AC 360 ms
51,200 KB
testcase_37 AC 358 ms
51,072 KB
testcase_38 AC 357 ms
51,072 KB
testcase_39 AC 357 ms
51,072 KB
testcase_40 AC 357 ms
50,944 KB
testcase_41 AC 356 ms
51,072 KB
testcase_42 AC 358 ms
51,072 KB
testcase_43 AC 357 ms
51,072 KB
testcase_44 AC 358 ms
51,072 KB
testcase_45 AC 357 ms
51,072 KB
testcase_46 AC 357 ms
51,072 KB
testcase_47 AC 357 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