結果

問題 No.999 てん vs. ほむ
ユーザー H20H20
提出日時 2020-11-18 10:14:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 115,448 KB
最終ジャッジ日時 2024-07-23 08:53:12
合計ジャッジ時間 2,802 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,588 KB
testcase_01 AC 36 ms
52,188 KB
testcase_02 AC 37 ms
52,072 KB
testcase_03 AC 36 ms
52,008 KB
testcase_04 AC 37 ms
52,628 KB
testcase_05 AC 38 ms
52,344 KB
testcase_06 AC 36 ms
52,792 KB
testcase_07 AC 36 ms
53,084 KB
testcase_08 AC 44 ms
62,424 KB
testcase_09 AC 92 ms
104,460 KB
testcase_10 AC 57 ms
79,092 KB
testcase_11 AC 50 ms
72,800 KB
testcase_12 AC 65 ms
87,224 KB
testcase_13 AC 106 ms
112,192 KB
testcase_14 AC 108 ms
111,808 KB
testcase_15 AC 110 ms
112,192 KB
testcase_16 AC 107 ms
111,844 KB
testcase_17 AC 89 ms
113,824 KB
testcase_18 AC 90 ms
113,760 KB
testcase_19 AC 91 ms
115,448 KB
testcase_20 AC 92 ms
113,768 KB
testcase_21 AC 105 ms
111,828 KB
testcase_22 AC 97 ms
107,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
N = int(input())
A = list(map(int, input().split()))
AH = []
for i in range(N):
    AH.append(A[2*i]-A[2*i+1])
 
AC = [0]+list(itertools.accumulate(AH))
 
ans = 0
for i in range(N+1):
    ans = max(ans,-AC[-1]+AC[i]*2)
 
print(ans)
0