結果

問題 No.1199 お菓子配り-2
ユーザー 👑 KazunKazun
提出日時 2020-08-28 21:42:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 170 ms / 1,000 ms
コード長 276 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 76,868 KB
最終ジャッジ日時 2024-11-14 03:09:47
合計ジャッジ時間 9,441 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,596 KB
testcase_01 AC 36 ms
52,772 KB
testcase_02 AC 35 ms
52,600 KB
testcase_03 AC 81 ms
75,280 KB
testcase_04 AC 124 ms
75,684 KB
testcase_05 AC 42 ms
63,960 KB
testcase_06 AC 46 ms
66,516 KB
testcase_07 AC 89 ms
75,208 KB
testcase_08 AC 95 ms
75,548 KB
testcase_09 AC 77 ms
75,212 KB
testcase_10 AC 51 ms
73,320 KB
testcase_11 AC 73 ms
75,036 KB
testcase_12 AC 68 ms
75,216 KB
testcase_13 AC 51 ms
73,604 KB
testcase_14 AC 51 ms
72,052 KB
testcase_15 AC 49 ms
69,788 KB
testcase_16 AC 98 ms
75,880 KB
testcase_17 AC 74 ms
75,360 KB
testcase_18 AC 106 ms
75,432 KB
testcase_19 AC 65 ms
75,292 KB
testcase_20 AC 137 ms
76,312 KB
testcase_21 AC 109 ms
75,840 KB
testcase_22 AC 84 ms
75,736 KB
testcase_23 AC 97 ms
75,752 KB
testcase_24 AC 110 ms
75,832 KB
testcase_25 AC 55 ms
75,376 KB
testcase_26 AC 112 ms
75,768 KB
testcase_27 AC 99 ms
75,704 KB
testcase_28 AC 163 ms
76,632 KB
testcase_29 AC 162 ms
76,552 KB
testcase_30 AC 163 ms
76,184 KB
testcase_31 AC 162 ms
76,592 KB
testcase_32 AC 161 ms
76,548 KB
testcase_33 AC 167 ms
76,532 KB
testcase_34 AC 167 ms
76,556 KB
testcase_35 AC 165 ms
76,124 KB
testcase_36 AC 165 ms
76,168 KB
testcase_37 AC 162 ms
76,392 KB
testcase_38 AC 163 ms
76,868 KB
testcase_39 AC 170 ms
76,620 KB
testcase_40 AC 168 ms
76,240 KB
testcase_41 AC 167 ms
76,444 KB
testcase_42 AC 164 ms
76,248 KB
testcase_43 AC 167 ms
76,540 KB
testcase_44 AC 164 ms
76,400 KB
testcase_45 AC 163 ms
76,400 KB
testcase_46 AC 168 ms
76,792 KB
testcase_47 AC 166 ms
76,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

DP=[[0,0] for _ in range(N+1)]

for x in range(1,N+1):
    DP[x][0]=max(DP[x-1][0],DP[x-1][1]+B[x-1])
    DP[x][1]=max(DP[x-1][0]-B[x-1],DP[x-1][1])

print(DP[-1][0])
0