結果

問題 No.999 てん vs. ほむ
ユーザー ntudantuda
提出日時 2024-01-01 13:54:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 300 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,832 KB
実行使用メモリ 108,908 KB
最終ジャッジ日時 2024-09-27 17:23:43
合計ジャッジ時間 2,933 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,428 KB
testcase_01 AC 40 ms
52,308 KB
testcase_02 AC 43 ms
52,552 KB
testcase_03 AC 39 ms
52,956 KB
testcase_04 AC 38 ms
53,160 KB
testcase_05 AC 38 ms
53,284 KB
testcase_06 AC 41 ms
52,068 KB
testcase_07 AC 40 ms
52,944 KB
testcase_08 AC 48 ms
61,996 KB
testcase_09 AC 95 ms
105,624 KB
testcase_10 AC 60 ms
75,272 KB
testcase_11 AC 56 ms
70,712 KB
testcase_12 AC 66 ms
80,724 KB
testcase_13 AC 107 ms
102,016 KB
testcase_14 AC 108 ms
102,024 KB
testcase_15 AC 109 ms
102,068 KB
testcase_16 AC 107 ms
101,696 KB
testcase_17 AC 84 ms
101,948 KB
testcase_18 AC 85 ms
101,680 KB
testcase_19 AC 85 ms
99,980 KB
testcase_20 AC 86 ms
101,912 KB
testcase_21 AC 105 ms
101,716 KB
testcase_22 AC 99 ms
108,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
B = [0] * (N + 1)
C = [0] * (N + 1)

for i in range(N):
    B[i + 1] = A[i * 2] - A[i * 2 + 1] + B[i]
    C[N - i - 1] = A[(N - i) * 2 - 1] - A[(N - i) * 2 - 2] + C[N - i]
ans = 0

for i in range(N + 1):
    ans = max(ans, B[i] + C[i])
print(ans)
0