結果

問題 No.999 てん vs. ほむ
ユーザー NoneNone
提出日時 2021-05-05 02:48:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 240 bytes
コンパイル時間 586 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 113,768 KB
最終ジャッジ日時 2024-07-23 22:08:50
合計ジャッジ時間 3,116 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,348 KB
testcase_01 AC 39 ms
52,696 KB
testcase_02 AC 39 ms
53,024 KB
testcase_03 AC 38 ms
53,440 KB
testcase_04 AC 38 ms
52,120 KB
testcase_05 WA -
testcase_06 AC 39 ms
52,344 KB
testcase_07 AC 40 ms
52,884 KB
testcase_08 AC 47 ms
63,896 KB
testcase_09 AC 97 ms
104,636 KB
testcase_10 AC 60 ms
77,712 KB
testcase_11 AC 55 ms
73,232 KB
testcase_12 AC 67 ms
86,632 KB
testcase_13 AC 112 ms
111,536 KB
testcase_14 AC 113 ms
111,268 KB
testcase_15 AC 114 ms
111,272 KB
testcase_16 AC 114 ms
111,268 KB
testcase_17 AC 90 ms
111,640 KB
testcase_18 WA -
testcase_19 AC 91 ms
111,740 KB
testcase_20 WA -
testcase_21 AC 113 ms
110,924 KB
testcase_22 AC 102 ms
107,052 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):
    res=max(B[i]+C[i],res)
print(res)
0