結果
| 問題 |
No.999 てん vs. ほむ
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 18 WA * 2 |
ソースコード
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)