結果

問題 No.999 てん vs. ほむ
ユーザー NoneNone
提出日時 2021-05-05 02:49:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 579 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 113,280 KB
最終ジャッジ日時 2024-07-23 22:09:03
合計ジャッジ時間 3,342 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,604 KB
testcase_01 AC 38 ms
52,576 KB
testcase_02 AC 38 ms
53,224 KB
testcase_03 AC 38 ms
53,364 KB
testcase_04 AC 38 ms
52,548 KB
testcase_05 AC 38 ms
52,468 KB
testcase_06 AC 37 ms
52,420 KB
testcase_07 AC 39 ms
52,264 KB
testcase_08 AC 48 ms
63,244 KB
testcase_09 AC 99 ms
104,364 KB
testcase_10 AC 58 ms
77,700 KB
testcase_11 AC 54 ms
71,968 KB
testcase_12 AC 65 ms
87,024 KB
testcase_13 AC 111 ms
111,776 KB
testcase_14 AC 112 ms
111,264 KB
testcase_15 AC 112 ms
111,268 KB
testcase_16 AC 112 ms
111,260 KB
testcase_17 AC 90 ms
111,604 KB
testcase_18 AC 90 ms
111,448 KB
testcase_19 AC 89 ms
111,472 KB
testcase_20 AC 95 ms
113,280 KB
testcase_21 AC 109 ms
111,204 KB
testcase_22 AC 106 ms
107,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int, input().split()))
B=[0]
C=[0]
for i in range(N):
    B.append(A[2*i]-A[2*i+1]+B[-1])
    C.append(A[2*N-1-2*i]-A[2*N-1-(2*i+1)]+C[-1])
C.reverse()
res=0
for i in range(N+1):
    res=max(B[i]+C[i],res)
print(res)
0