結果

問題 No.1199 お菓子配り-2
ユーザー mlihua09mlihua09
提出日時 2020-08-28 21:37:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 157 ms / 1,000 ms
コード長 212 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 76,092 KB
最終ジャッジ日時 2024-11-14 03:00:33
合計ジャッジ時間 9,055 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,964 KB
testcase_01 AC 35 ms
51,944 KB
testcase_02 AC 36 ms
53,144 KB
testcase_03 AC 76 ms
74,884 KB
testcase_04 AC 114 ms
75,332 KB
testcase_05 AC 42 ms
61,448 KB
testcase_06 AC 48 ms
64,516 KB
testcase_07 AC 78 ms
74,760 KB
testcase_08 AC 91 ms
75,244 KB
testcase_09 AC 71 ms
75,360 KB
testcase_10 AC 50 ms
69,892 KB
testcase_11 AC 67 ms
74,836 KB
testcase_12 AC 64 ms
75,088 KB
testcase_13 AC 47 ms
69,512 KB
testcase_14 AC 48 ms
68,924 KB
testcase_15 AC 46 ms
66,956 KB
testcase_16 AC 88 ms
75,068 KB
testcase_17 AC 68 ms
74,780 KB
testcase_18 AC 97 ms
75,276 KB
testcase_19 AC 61 ms
75,052 KB
testcase_20 AC 125 ms
75,820 KB
testcase_21 AC 99 ms
75,436 KB
testcase_22 AC 78 ms
75,228 KB
testcase_23 AC 89 ms
75,152 KB
testcase_24 AC 100 ms
75,272 KB
testcase_25 AC 49 ms
70,476 KB
testcase_26 AC 103 ms
75,356 KB
testcase_27 AC 89 ms
75,284 KB
testcase_28 AC 148 ms
75,820 KB
testcase_29 AC 150 ms
75,620 KB
testcase_30 AC 149 ms
75,612 KB
testcase_31 AC 149 ms
75,800 KB
testcase_32 AC 149 ms
75,880 KB
testcase_33 AC 149 ms
76,016 KB
testcase_34 AC 149 ms
75,888 KB
testcase_35 AC 149 ms
76,076 KB
testcase_36 AC 152 ms
75,592 KB
testcase_37 AC 152 ms
75,932 KB
testcase_38 AC 149 ms
75,660 KB
testcase_39 AC 149 ms
75,484 KB
testcase_40 AC 150 ms
76,004 KB
testcase_41 AC 150 ms
75,748 KB
testcase_42 AC 150 ms
75,676 KB
testcase_43 AC 157 ms
75,616 KB
testcase_44 AC 152 ms
75,928 KB
testcase_45 AC 149 ms
76,092 KB
testcase_46 AC 150 ms
75,840 KB
testcase_47 AC 150 ms
75,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #




N, M = map(int, input().split())

dp1 = 0

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


dp2 = A[0]



for i in A:
    
    dp1, dp2 = max(dp1, dp2 - i), max(dp2, dp1 + i)
    
print(max(dp1, dp2))
0