結果

問題 No.1199 お菓子配り-2
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-08-28 21:48:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 1,000 ms
コード長 337 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 76,600 KB
最終ジャッジ日時 2024-11-14 03:16:30
合計ジャッジ時間 8,949 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,552 KB
testcase_01 AC 35 ms
53,000 KB
testcase_02 AC 35 ms
52,352 KB
testcase_03 AC 73 ms
75,100 KB
testcase_04 AC 109 ms
75,700 KB
testcase_05 AC 42 ms
63,772 KB
testcase_06 AC 43 ms
66,008 KB
testcase_07 AC 77 ms
75,080 KB
testcase_08 AC 91 ms
75,404 KB
testcase_09 AC 72 ms
75,020 KB
testcase_10 AC 50 ms
72,772 KB
testcase_11 AC 68 ms
75,100 KB
testcase_12 AC 66 ms
75,572 KB
testcase_13 AC 48 ms
73,376 KB
testcase_14 AC 48 ms
70,304 KB
testcase_15 AC 46 ms
68,548 KB
testcase_16 AC 87 ms
75,520 KB
testcase_17 AC 66 ms
75,296 KB
testcase_18 AC 91 ms
75,164 KB
testcase_19 AC 59 ms
75,512 KB
testcase_20 AC 120 ms
75,964 KB
testcase_21 AC 95 ms
75,388 KB
testcase_22 AC 77 ms
75,324 KB
testcase_23 AC 87 ms
74,904 KB
testcase_24 AC 96 ms
74,984 KB
testcase_25 AC 49 ms
74,032 KB
testcase_26 AC 103 ms
75,528 KB
testcase_27 AC 88 ms
75,592 KB
testcase_28 AC 148 ms
76,032 KB
testcase_29 AC 149 ms
75,992 KB
testcase_30 AC 151 ms
75,908 KB
testcase_31 AC 149 ms
75,988 KB
testcase_32 AC 145 ms
76,336 KB
testcase_33 AC 149 ms
76,460 KB
testcase_34 AC 147 ms
76,236 KB
testcase_35 AC 147 ms
75,808 KB
testcase_36 AC 145 ms
76,600 KB
testcase_37 AC 147 ms
76,128 KB
testcase_38 AC 147 ms
76,128 KB
testcase_39 AC 147 ms
75,988 KB
testcase_40 AC 149 ms
76,348 KB
testcase_41 AC 149 ms
76,120 KB
testcase_42 AC 148 ms
76,336 KB
testcase_43 AC 151 ms
76,204 KB
testcase_44 AC 149 ms
75,928 KB
testcase_45 AC 148 ms
75,872 KB
testcase_46 AC 151 ms
75,808 KB
testcase_47 AC 148 ms
76,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

N,M = map(int,stdin.readline().split())

A = []

for i in range(N):

    a = sum( list(map(int,stdin.readline().split())) )
    A.append(a)

dp = [0,0]

for i in range(N):

    ndp = [float("-inf"),float("-inf")]
    ndp[0] = max(dp[0],dp[1]-A[i])
    ndp[1] = max(dp[1],dp[0]+A[i])

    dp = ndp

print (max(dp))
0