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