結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,456 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 39 ms
51,712 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 37 ms
51,456 KB
testcase_08 AC 49 ms
62,336 KB
testcase_09 AC 99 ms
104,576 KB
testcase_10 AC 67 ms
77,824 KB
testcase_11 AC 57 ms
71,296 KB
testcase_12 AC 70 ms
83,968 KB
testcase_13 AC 114 ms
105,020 KB
testcase_14 AC 116 ms
105,404 KB
testcase_15 AC 115 ms
105,164 KB
testcase_16 AC 118 ms
105,024 KB
testcase_17 WA -
testcase_18 AC 100 ms
109,440 KB
testcase_19 WA -
testcase_20 AC 102 ms
110,208 KB
testcase_21 AC 114 ms
105,068 KB
testcase_22 AC 106 ms
107,264 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 = 0
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