結果

問題 No.1199 お菓子配り-2
ユーザー chielochielo
提出日時 2020-08-28 21:45:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 1,000 ms
コード長 346 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 76,992 KB
最終ジャッジ日時 2024-11-14 03:15:26
合計ジャッジ時間 9,287 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,280 KB
testcase_01 AC 36 ms
52,552 KB
testcase_02 AC 35 ms
52,424 KB
testcase_03 AC 77 ms
75,784 KB
testcase_04 AC 119 ms
75,992 KB
testcase_05 AC 43 ms
61,428 KB
testcase_06 AC 43 ms
64,328 KB
testcase_07 AC 80 ms
75,212 KB
testcase_08 AC 90 ms
75,276 KB
testcase_09 AC 75 ms
75,428 KB
testcase_10 AC 51 ms
69,952 KB
testcase_11 AC 66 ms
74,832 KB
testcase_12 AC 65 ms
75,140 KB
testcase_13 AC 48 ms
69,400 KB
testcase_14 AC 48 ms
68,888 KB
testcase_15 AC 48 ms
66,536 KB
testcase_16 AC 90 ms
75,080 KB
testcase_17 AC 71 ms
75,316 KB
testcase_18 AC 106 ms
76,160 KB
testcase_19 AC 66 ms
75,192 KB
testcase_20 AC 137 ms
75,908 KB
testcase_21 AC 105 ms
76,084 KB
testcase_22 AC 84 ms
75,968 KB
testcase_23 AC 93 ms
75,748 KB
testcase_24 AC 105 ms
76,236 KB
testcase_25 AC 50 ms
71,208 KB
testcase_26 AC 103 ms
76,080 KB
testcase_27 AC 97 ms
75,208 KB
testcase_28 AC 164 ms
76,720 KB
testcase_29 AC 158 ms
76,588 KB
testcase_30 AC 151 ms
76,128 KB
testcase_31 AC 165 ms
76,484 KB
testcase_32 AC 162 ms
76,488 KB
testcase_33 AC 160 ms
76,188 KB
testcase_34 AC 159 ms
76,384 KB
testcase_35 AC 160 ms
76,524 KB
testcase_36 AC 164 ms
76,584 KB
testcase_37 AC 159 ms
76,296 KB
testcase_38 AC 156 ms
76,184 KB
testcase_39 AC 161 ms
76,320 KB
testcase_40 AC 164 ms
76,596 KB
testcase_41 AC 162 ms
76,564 KB
testcase_42 AC 160 ms
76,992 KB
testcase_43 AC 150 ms
76,784 KB
testcase_44 AC 149 ms
76,612 KB
testcase_45 AC 150 ms
76,628 KB
testcase_46 AC 148 ms
76,588 KB
testcase_47 AC 151 ms
76,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
a = [sum(map(int, input().split())) for _ in range(n)]
b = [[-10 ** 31] * 2 for _ in range(n)]
mx = [-10 ** 31] * 2
for i in range(n):
    b[i][0] = a[i]
    if i:
        b[i][0] = max(b[i][0], mx[1] + a[i])
        b[i][1] = mx[0] - a[i]
    for j in range(2):
        mx[j] = max(b[i][j], mx[j])
print(max(mx))
0