結果

問題 No.999 てん vs. ほむ
ユーザー O2MTO2MT
提出日時 2020-12-15 00:59:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 302 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 114,528 KB
最終ジャッジ日時 2024-09-20 01:13:07
合計ジャッジ時間 2,816 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 35 ms
51,712 KB
testcase_04 AC 36 ms
51,840 KB
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 34 ms
52,480 KB
testcase_07 AC 36 ms
51,968 KB
testcase_08 AC 45 ms
62,336 KB
testcase_09 AC 92 ms
104,384 KB
testcase_10 AC 55 ms
77,440 KB
testcase_11 AC 49 ms
72,064 KB
testcase_12 AC 61 ms
86,784 KB
testcase_13 AC 102 ms
111,112 KB
testcase_14 AC 106 ms
111,184 KB
testcase_15 AC 106 ms
111,440 KB
testcase_16 AC 102 ms
111,104 KB
testcase_17 WA -
testcase_18 AC 89 ms
112,924 KB
testcase_19 WA -
testcase_20 AC 94 ms
113,792 KB
testcase_21 AC 105 ms
110,900 KB
testcase_22 AC 93 ms
107,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
N = int(input())
A = list(map(int,input().split()))
if N == 1:
    print(max(A)-min(A))
    exit()
B = []
for i in range(0,2*N-1,2):
    B.append(A[i]-A[i+1])

BC = list(accumulate(B))
ans = 0

for i in range(len(BC)):
    ans = max(ans,BC[i]-(BC[-1]-BC[i]))
print(ans)
0