結果

問題 No.999 てん vs. ほむ
ユーザー c-yanc-yan
提出日時 2020-03-22 00:26:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 654 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 32,660 KB
最終ジャッジ日時 2024-06-06 12:09:28
合計ジャッジ時間 5,754 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 38 ms
11,392 KB
testcase_09 AC 255 ms
30,828 KB
testcase_10 AC 99 ms
16,428 KB
testcase_11 AC 74 ms
14,708 KB
testcase_12 AC 135 ms
19,564 KB
testcase_13 AC 287 ms
32,528 KB
testcase_14 AC 284 ms
32,532 KB
testcase_15 AC 286 ms
32,660 KB
testcase_16 AC 285 ms
32,528 KB
testcase_17 AC 257 ms
29,016 KB
testcase_18 AC 254 ms
28,708 KB
testcase_19 AC 260 ms
29,092 KB
testcase_20 AC 271 ms
29,156 KB
testcase_21 AC 278 ms
32,500 KB
testcase_22 AC 270 ms
31,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))

l = A[::2]
r = A[1::2]
for i in range(N - 1):
    l[i + 1] += l[i]
    r[i + 1] += r[i]

result = l[N - 1] - r[N - 1]
result = max(result, r[N - 1] - l[N - 1])
for i in range(1, N):
    t = l[N - 1 - i] + (r[N - 1] - r[N - 1 - i])
    t -= r[N - 1 - i] + (l[N - 1] - l[N - 1 - i])
    result = max(result, t)
print(result)
0