結果

問題 No.999 てん vs. ほむ
ユーザー ValkyrjaValkyrja
提出日時 2020-05-16 16:05:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 272 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,796 KB
最終ジャッジ日時 2024-09-22 11:36:30
合計ジャッジ時間 5,564 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 36 ms
11,520 KB
testcase_09 AC 242 ms
30,632 KB
testcase_10 AC 92 ms
16,680 KB
testcase_11 AC 71 ms
14,876 KB
testcase_12 AC 122 ms
19,692 KB
testcase_13 AC 265 ms
32,532 KB
testcase_14 AC 265 ms
32,660 KB
testcase_15 AC 270 ms
32,640 KB
testcase_16 AC 272 ms
32,796 KB
testcase_17 AC 230 ms
29,020 KB
testcase_18 AC 237 ms
28,820 KB
testcase_19 AC 239 ms
29,224 KB
testcase_20 AC 236 ms
29,284 KB
testcase_21 AC 239 ms
32,632 KB
testcase_22 AC 237 ms
31,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=[int(j)for j in input().split()]
l=[0,a[0]-a[1]]
for i in range(1,n):
    l.append(l[-1]+a[2*i]-a[2*i+1])
a=a[::-1]
r=[a[0]-a[1]]
for i in range(1,n):
    r.append(r[-1]+a[2*i]-a[2*i+1])
r=r[::-1]+[0]
ans=0
for i in range(n+1):
    ans=max(ans,l[i]+r[i])
print(ans)
0