結果

問題 No.999 てん vs. ほむ
ユーザー nohakai3nohakai3
提出日時 2022-11-12 13:02:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 81,780 KB
実行使用メモリ 114,780 KB
最終ジャッジ日時 2024-09-14 04:22:26
合計ジャッジ時間 3,976 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,308 KB
testcase_01 AC 37 ms
52,740 KB
testcase_02 AC 39 ms
52,204 KB
testcase_03 AC 38 ms
53,000 KB
testcase_04 AC 37 ms
52,460 KB
testcase_05 AC 37 ms
53,216 KB
testcase_06 AC 39 ms
52,328 KB
testcase_07 AC 38 ms
52,928 KB
testcase_08 AC 46 ms
62,036 KB
testcase_09 AC 96 ms
104,392 KB
testcase_10 AC 58 ms
77,816 KB
testcase_11 AC 53 ms
73,212 KB
testcase_12 AC 65 ms
87,288 KB
testcase_13 AC 111 ms
112,212 KB
testcase_14 AC 109 ms
111,932 KB
testcase_15 AC 111 ms
112,108 KB
testcase_16 AC 109 ms
112,376 KB
testcase_17 AC 93 ms
113,688 KB
testcase_18 AC 92 ms
113,728 KB
testcase_19 AC 93 ms
114,780 KB
testcase_20 AC 95 ms
113,336 KB
testcase_21 AC 107 ms
111,736 KB
testcase_22 AC 98 ms
107,196 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