結果

問題 No.1199 お菓子配り-2
ユーザー convexineqconvexineq
提出日時 2021-05-11 02:56:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 1,000 ms
コード長 186 bytes
コンパイル時間 859 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-09-21 09:01:22
合計ジャッジ時間 12,834 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 40 ms
51,456 KB
testcase_03 AC 97 ms
74,880 KB
testcase_04 AC 137 ms
75,392 KB
testcase_05 AC 49 ms
60,672 KB
testcase_06 AC 52 ms
63,232 KB
testcase_07 AC 94 ms
74,752 KB
testcase_08 AC 103 ms
75,520 KB
testcase_09 AC 86 ms
75,008 KB
testcase_10 AC 59 ms
68,224 KB
testcase_11 AC 80 ms
74,752 KB
testcase_12 AC 83 ms
75,008 KB
testcase_13 AC 59 ms
68,992 KB
testcase_14 AC 59 ms
67,328 KB
testcase_15 AC 56 ms
65,152 KB
testcase_16 AC 108 ms
74,880 KB
testcase_17 AC 85 ms
75,008 KB
testcase_18 AC 114 ms
74,880 KB
testcase_19 AC 77 ms
75,008 KB
testcase_20 AC 155 ms
76,032 KB
testcase_21 AC 121 ms
75,008 KB
testcase_22 AC 95 ms
75,008 KB
testcase_23 AC 104 ms
75,648 KB
testcase_24 AC 118 ms
75,264 KB
testcase_25 AC 61 ms
69,632 KB
testcase_26 AC 116 ms
75,264 KB
testcase_27 AC 106 ms
75,008 KB
testcase_28 AC 165 ms
75,904 KB
testcase_29 AC 166 ms
75,776 KB
testcase_30 AC 171 ms
75,776 KB
testcase_31 AC 170 ms
76,160 KB
testcase_32 AC 167 ms
76,032 KB
testcase_33 AC 168 ms
75,776 KB
testcase_34 AC 168 ms
75,904 KB
testcase_35 AC 168 ms
75,776 KB
testcase_36 AC 170 ms
75,904 KB
testcase_37 AC 168 ms
75,648 KB
testcase_38 AC 167 ms
75,776 KB
testcase_39 AC 175 ms
75,776 KB
testcase_40 AC 184 ms
75,776 KB
testcase_41 AC 173 ms
75,520 KB
testcase_42 AC 170 ms
75,904 KB
testcase_43 AC 168 ms
76,032 KB
testcase_44 AC 168 ms
75,392 KB
testcase_45 AC 167 ms
76,032 KB
testcase_46 AC 165 ms
76,032 KB
testcase_47 AC 167 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
INF = 10**18
p, q = 0,-INF
for _ in range(n):
    x = sum(map(int,input().split()))
    pp = max(p,q-x)
    qq = max(q,p+x)
    p,q = pp,qq
print(max(p,q))
0