結果

問題 No.999 てん vs. ほむ
ユーザー rythem00359rythem00359
提出日時 2020-08-27 13:46:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 270 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,272 KB
最終ジャッジ日時 2024-04-25 06:18:13
合計ジャッジ時間 5,741 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,624 KB
testcase_01 AC 40 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 37 ms
10,624 KB
testcase_04 AC 34 ms
10,752 KB
testcase_05 WA -
testcase_06 AC 33 ms
10,624 KB
testcase_07 AC 34 ms
10,624 KB
testcase_08 AC 45 ms
11,264 KB
testcase_09 AC 290 ms
31,116 KB
testcase_10 AC 102 ms
16,552 KB
testcase_11 AC 83 ms
14,640 KB
testcase_12 AC 139 ms
20,328 KB
testcase_13 AC 285 ms
33,144 KB
testcase_14 AC 295 ms
33,272 KB
testcase_15 AC 294 ms
33,144 KB
testcase_16 AC 294 ms
33,136 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 252 ms
32,484 KB
testcase_22 AC 247 ms
31,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=[*map(int,input().split())]
r=[0]*(len(a)//2)
l=[0]*(len(a)//2)
rn,ln=0,0
for i in range(len(a)//2):
    rn+=a[2*i]-a[2*i+1]
    ln+=a[2*(n-i)-1]-a[2*(n-i-1)]
    r[i]=rn
    l[-i-1]=ln
rn=0
for i in range(len(r)-1):
    rn=max(rn,r[i]+l[i+1])
print(rn)
0