結果

問題 No.999 てん vs. ほむ
ユーザー tktk_snsntktk_snsn
提出日時 2021-04-28 01:24:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 216 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 32,636 KB
最終ジャッジ日時 2024-07-06 20:44:33
合計ジャッジ時間 3,658 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 35 ms
11,392 KB
testcase_09 AC 156 ms
30,932 KB
testcase_10 AC 69 ms
16,780 KB
testcase_11 AC 56 ms
14,744 KB
testcase_12 AC 86 ms
19,668 KB
testcase_13 AC 173 ms
32,592 KB
testcase_14 AC 173 ms
32,628 KB
testcase_15 AC 172 ms
32,636 KB
testcase_16 AC 172 ms
32,632 KB
testcase_17 AC 154 ms
29,248 KB
testcase_18 AC 155 ms
28,804 KB
testcase_19 AC 151 ms
29,224 KB
testcase_20 AC 154 ms
29,260 KB
testcase_21 AC 157 ms
32,604 KB
testcase_22 AC 152 ms
31,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N = int(input())
A = list(map(int, input().split()))

ans = sum(A[0::2]) - sum(A[1::2])
tmp = ans
while A:
    x = A.pop() - A.pop()
    tmp += 2 * x
    ans = max(ans, tmp)

print(ans)
0