結果

問題 No.1199 お菓子配り-2
ユーザー KudeKude
提出日時 2020-08-28 21:43:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 155 ms / 1,000 ms
コード長 204 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-11-14 03:13:50
合計ジャッジ時間 9,257 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,776 KB
testcase_01 AC 35 ms
53,632 KB
testcase_02 AC 37 ms
52,124 KB
testcase_03 AC 75 ms
75,148 KB
testcase_04 AC 116 ms
75,212 KB
testcase_05 AC 42 ms
62,436 KB
testcase_06 AC 44 ms
63,384 KB
testcase_07 AC 78 ms
75,088 KB
testcase_08 AC 90 ms
74,880 KB
testcase_09 AC 73 ms
74,824 KB
testcase_10 AC 49 ms
68,960 KB
testcase_11 AC 68 ms
75,284 KB
testcase_12 AC 67 ms
74,836 KB
testcase_13 AC 48 ms
69,144 KB
testcase_14 AC 49 ms
69,088 KB
testcase_15 AC 48 ms
66,772 KB
testcase_16 AC 90 ms
74,884 KB
testcase_17 AC 70 ms
75,308 KB
testcase_18 AC 98 ms
75,352 KB
testcase_19 AC 62 ms
75,384 KB
testcase_20 AC 127 ms
75,816 KB
testcase_21 AC 104 ms
75,748 KB
testcase_22 AC 80 ms
75,144 KB
testcase_23 AC 89 ms
75,528 KB
testcase_24 AC 101 ms
75,344 KB
testcase_25 AC 50 ms
71,008 KB
testcase_26 AC 105 ms
75,404 KB
testcase_27 AC 91 ms
75,248 KB
testcase_28 AC 149 ms
75,888 KB
testcase_29 AC 150 ms
75,612 KB
testcase_30 AC 147 ms
75,916 KB
testcase_31 AC 147 ms
75,612 KB
testcase_32 AC 149 ms
76,088 KB
testcase_33 AC 148 ms
76,028 KB
testcase_34 AC 149 ms
75,892 KB
testcase_35 AC 148 ms
76,116 KB
testcase_36 AC 151 ms
75,864 KB
testcase_37 AC 150 ms
75,952 KB
testcase_38 AC 149 ms
76,288 KB
testcase_39 AC 150 ms
76,096 KB
testcase_40 AC 148 ms
75,684 KB
testcase_41 AC 154 ms
75,736 KB
testcase_42 AC 150 ms
75,752 KB
testcase_43 AC 148 ms
75,940 KB
testcase_44 AC 155 ms
75,940 KB
testcase_45 AC 150 ms
76,120 KB
testcase_46 AC 152 ms
76,000 KB
testcase_47 AC 146 ms
75,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
a = [sum(map(int, input().split())) for _ in range(n)]
dp = [0, 0]
for x in a:
    dp = [
        max(dp[0], dp[1] - x),
        max(dp[1], dp[0] + x)
    ]
print(max(dp))
0