結果

問題 No.999 てん vs. ほむ
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-02-28 22:05:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 345 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 109,952 KB
最終ジャッジ日時 2024-10-13 17:28:30
合計ジャッジ時間 3,142 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 40 ms
51,456 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 40 ms
51,584 KB
testcase_05 AC 40 ms
51,584 KB
testcase_06 AC 40 ms
51,840 KB
testcase_07 AC 41 ms
51,712 KB
testcase_08 AC 53 ms
61,952 KB
testcase_09 AC 104 ms
104,576 KB
testcase_10 AC 71 ms
77,696 KB
testcase_11 AC 62 ms
71,296 KB
testcase_12 AC 75 ms
83,584 KB
testcase_13 AC 118 ms
104,768 KB
testcase_14 AC 117 ms
105,288 KB
testcase_15 AC 120 ms
105,284 KB
testcase_16 AC 118 ms
105,540 KB
testcase_17 WA -
testcase_18 AC 103 ms
109,440 KB
testcase_19 WA -
testcase_20 AC 104 ms
109,440 KB
testcase_21 AC 116 ms
104,776 KB
testcase_22 AC 108 ms
106,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, = map(int, input().split())
X = list(map(int, input().split()))

A = [(0, 0)]
for i in range(N):
    aa, bb = A[-1]
    A.append((aa+X[2*i], bb+X[2*i+1]))
aa, bb = 0, 0
r = -10**18
for i in range(N-1, -1, -1):
    b, a = X[2*i], X[2*i+1]
    r = max(r, A[i+1][0]-A[i+1][1]+aa-bb)
    aa += a
    bb += b

r = max(r, A[0][0]-A[0][1])
print(r)
0