結果

問題 No.1199 お菓子配り-2
ユーザー wgrapewgrape
提出日時 2024-10-09 17:23:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 215 ms / 1,000 ms
コード長 314 bytes
コンパイル時間 558 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,152 KB
最終ジャッジ日時 2024-10-09 17:24:08
合計ジャッジ時間 13,190 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 129 ms
75,136 KB
testcase_04 AC 154 ms
75,472 KB
testcase_05 AC 44 ms
60,800 KB
testcase_06 AC 47 ms
63,488 KB
testcase_07 AC 82 ms
75,136 KB
testcase_08 AC 94 ms
75,224 KB
testcase_09 AC 77 ms
74,644 KB
testcase_10 AC 52 ms
68,736 KB
testcase_11 AC 71 ms
75,264 KB
testcase_12 AC 74 ms
74,752 KB
testcase_13 AC 56 ms
69,376 KB
testcase_14 AC 53 ms
67,584 KB
testcase_15 AC 51 ms
65,408 KB
testcase_16 AC 119 ms
74,880 KB
testcase_17 AC 74 ms
75,136 KB
testcase_18 AC 103 ms
75,392 KB
testcase_19 AC 67 ms
75,088 KB
testcase_20 AC 155 ms
75,904 KB
testcase_21 AC 111 ms
75,036 KB
testcase_22 AC 82 ms
75,636 KB
testcase_23 AC 93 ms
75,620 KB
testcase_24 AC 104 ms
75,604 KB
testcase_25 AC 53 ms
70,784 KB
testcase_26 AC 108 ms
75,364 KB
testcase_27 AC 119 ms
74,788 KB
testcase_28 AC 154 ms
75,924 KB
testcase_29 AC 164 ms
75,592 KB
testcase_30 AC 176 ms
76,048 KB
testcase_31 AC 165 ms
75,924 KB
testcase_32 AC 161 ms
76,044 KB
testcase_33 AC 158 ms
75,984 KB
testcase_34 AC 181 ms
76,016 KB
testcase_35 AC 157 ms
76,152 KB
testcase_36 AC 155 ms
75,584 KB
testcase_37 AC 157 ms
75,520 KB
testcase_38 AC 156 ms
76,152 KB
testcase_39 AC 160 ms
75,784 KB
testcase_40 AC 215 ms
76,092 KB
testcase_41 AC 166 ms
75,552 KB
testcase_42 AC 179 ms
75,972 KB
testcase_43 AC 161 ms
75,648 KB
testcase_44 AC 161 ms
75,840 KB
testcase_45 AC 165 ms
75,888 KB
testcase_46 AC 205 ms
76,128 KB
testcase_47 AC 205 ms
76,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

dp = [0] * 2 # 最後にたべたものを2で割った余り
dp[1] = -(1 << 60)

N,M = map(int,input().split())
for _ in range(N):
    val = sum(map(int,input().split()))
    new_dp = dp.copy()
    new_dp[0] = max(new_dp[0], dp[1] - val)
    new_dp[1] = max(new_dp[1], dp[0] + val)
    dp = new_dp

print(max(dp))
0