結果

問題 No.999 てん vs. ほむ
ユーザー uni_pythonuni_python
提出日時 2020-07-21 23:26:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 693 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 115,228 KB
最終ジャッジ日時 2024-12-31 14:27:57
合計ジャッジ時間 3,154 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,436 KB
testcase_01 AC 36 ms
52,548 KB
testcase_02 AC 34 ms
53,260 KB
testcase_03 AC 34 ms
53,616 KB
testcase_04 AC 36 ms
53,752 KB
testcase_05 WA -
testcase_06 AC 35 ms
52,268 KB
testcase_07 AC 36 ms
52,784 KB
testcase_08 AC 46 ms
63,740 KB
testcase_09 AC 94 ms
102,444 KB
testcase_10 AC 56 ms
78,064 KB
testcase_11 AC 52 ms
73,572 KB
testcase_12 AC 65 ms
87,800 KB
testcase_13 AC 106 ms
112,796 KB
testcase_14 AC 104 ms
112,404 KB
testcase_15 AC 106 ms
113,044 KB
testcase_16 AC 105 ms
112,520 KB
testcase_17 AC 91 ms
115,192 KB
testcase_18 WA -
testcase_19 AC 88 ms
114,868 KB
testcase_20 WA -
testcase_21 AC 102 ms
112,764 KB
testcase_22 AC 95 ms
105,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    mod=10**9+7
    N=I()
    A=LI()
    L=[]
    for i in range(0,2*N,2):
        a=A[i]
        b=A[i+1]
        L.append(a-b)
    L2=[]
    for i in range(N):
        L2.append(-1*L[i])
        
    S=[0]*(N+1)
    for i in range(N):
        S[i+1]=S[i]+L[i]
        
    S2=[0]*(N+1)
    for i in range(N-1,-1,-1):
        S2[i]=S2[i+1]+L2[i]
        
    ans=-10**20
    for i in range(N):
        temp=S[i]+S2[i]
        if temp>ans:
            ans=temp
            


            
    print(ans)

    
    


main()
0