結果

問題 No.999 てん vs. ほむ
ユーザー H20H20
提出日時 2020-11-18 10:05:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 242 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 115,148 KB
最終ジャッジ日時 2024-07-23 08:53:02
合計ジャッジ時間 3,846 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,864 KB
testcase_01 AC 35 ms
52,164 KB
testcase_02 AC 36 ms
52,396 KB
testcase_03 AC 35 ms
52,960 KB
testcase_04 AC 36 ms
51,956 KB
testcase_05 AC 37 ms
52,396 KB
testcase_06 AC 36 ms
51,880 KB
testcase_07 AC 37 ms
53,788 KB
testcase_08 AC 43 ms
62,652 KB
testcase_09 AC 93 ms
104,576 KB
testcase_10 AC 56 ms
78,292 KB
testcase_11 AC 51 ms
72,312 KB
testcase_12 AC 64 ms
86,732 KB
testcase_13 AC 107 ms
111,792 KB
testcase_14 AC 109 ms
111,272 KB
testcase_15 AC 110 ms
111,164 KB
testcase_16 AC 107 ms
111,344 KB
testcase_17 WA -
testcase_18 AC 89 ms
113,224 KB
testcase_19 WA -
testcase_20 AC 93 ms
113,844 KB
testcase_21 AC 106 ms
111,216 KB
testcase_22 AC 97 ms
107,172 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 = list(itertools.accumulate(AH))
 
ans = 0
for i in range(N):
    ans = max(ans,-AC[-1]+AC[i]*2)
 
print(ans)
0