結果

問題 No.999 てん vs. ほむ
ユーザー s_shoheis_shohei
提出日時 2020-06-11 19:13:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 404 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 117,740 KB
最終ジャッジ日時 2024-06-24 03:13:15
合計ジャッジ時間 3,891 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,176 KB
testcase_01 AC 38 ms
51,824 KB
testcase_02 AC 39 ms
52,892 KB
testcase_03 AC 38 ms
51,884 KB
testcase_04 AC 38 ms
53,776 KB
testcase_05 WA -
testcase_06 AC 39 ms
52,600 KB
testcase_07 AC 39 ms
52,016 KB
testcase_08 AC 50 ms
63,264 KB
testcase_09 AC 104 ms
104,212 KB
testcase_10 AC 63 ms
82,068 KB
testcase_11 AC 58 ms
74,604 KB
testcase_12 AC 71 ms
91,372 KB
testcase_13 AC 121 ms
117,740 KB
testcase_14 AC 119 ms
117,384 KB
testcase_15 AC 119 ms
117,492 KB
testcase_16 AC 118 ms
117,588 KB
testcase_17 AC 99 ms
114,104 KB
testcase_18 WA -
testcase_19 AC 98 ms
114,016 KB
testcase_20 WA -
testcase_21 AC 117 ms
117,244 KB
testcase_22 AC 107 ms
107,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))

lis=[]
for i in range(n):
    dif = a[2*i] - a[2*i+1]
    lis.append(dif)

l_lis=[0]
now=0
for i in range(len(lis)):
    now+=lis[i]
    l_lis.append(now)

r_lis=[0]
now=0
for i in reversed(range(len(lis))):
    now+=lis[i]
    r_lis.append(now)
r_lis.reverse()

ans=-10**20
for i in range(len(lis)):
    ans = max(ans,l_lis[i] - r_lis[i])
print(ans)
0