結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 38 ms
52,060 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 36 ms
51,884 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 37 ms
52,480 KB
testcase_08 AC 42 ms
61,696 KB
testcase_09 AC 91 ms
104,176 KB
testcase_10 AC 56 ms
77,696 KB
testcase_11 AC 50 ms
72,064 KB
testcase_12 AC 63 ms
86,144 KB
testcase_13 AC 113 ms
111,112 KB
testcase_14 AC 105 ms
111,112 KB
testcase_15 AC 108 ms
111,240 KB
testcase_16 AC 106 ms
110,952 KB
testcase_17 AC 93 ms
114,560 KB
testcase_18 AC 90 ms
112,896 KB
testcase_19 AC 89 ms
114,560 KB
testcase_20 AC 92 ms
113,408 KB
testcase_21 AC 105 ms
110,920 KB
testcase_22 AC 94 ms
107,008 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 = abs(BC[-1])

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