結果

問題 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
コンパイル時間 232 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,272 KB
最終ジャッジ日時 2024-11-07 16:25:53
合計ジャッジ時間 5,691 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 WA -
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 38 ms
11,648 KB
testcase_09 AC 264 ms
31,244 KB
testcase_10 AC 101 ms
16,552 KB
testcase_11 AC 76 ms
14,764 KB
testcase_12 AC 128 ms
20,332 KB
testcase_13 AC 279 ms
33,268 KB
testcase_14 AC 279 ms
33,264 KB
testcase_15 AC 277 ms
33,272 KB
testcase_16 AC 285 ms
33,264 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 245 ms
32,488 KB
testcase_22 AC 241 ms
31,512 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