結果

問題 No.999 てん vs. ほむ
ユーザー 👑 rin204rin204
提出日時 2020-06-24 22:33:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 339 bytes
コンパイル時間 72 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,656 KB
最終ジャッジ日時 2024-07-03 20:24:06
合計ジャッジ時間 5,052 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 33 ms
11,520 KB
testcase_09 AC 215 ms
30,620 KB
testcase_10 AC 82 ms
16,548 KB
testcase_11 AC 60 ms
14,968 KB
testcase_12 AC 109 ms
19,548 KB
testcase_13 AC 230 ms
32,652 KB
testcase_14 AC 226 ms
32,652 KB
testcase_15 AC 235 ms
32,656 KB
testcase_16 AC 233 ms
32,656 KB
testcase_17 AC 208 ms
29,244 KB
testcase_18 AC 208 ms
28,860 KB
testcase_19 AC 205 ms
29,216 KB
testcase_20 AC 211 ms
29,276 KB
testcase_21 AC 200 ms
32,268 KB
testcase_22 AC 203 ms
31,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
r = [0]
l = [0]
total = 0
for i in range(n):
    total += a[2 * i] - a[2 * i + 1]
    l.append(total)
total = 0
for i in range(n - 1, -1, -1):
    total += a[2 * i + 1] - a[2 * i]
    r.append(total)

ans = -10 ** 10
for rr, ll in zip(r, l[::-1]):
    ans = max(ans, rr + ll)
print(ans)
0