結果

問題 No.999 てん vs. ほむ
ユーザー kimiyukikimiyuki
提出日時 2020-02-28 21:44:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 34,548 KB
最終ジャッジ日時 2024-10-13 17:11:08
合計ジャッジ時間 3,339 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 32 ms
11,520 KB
testcase_09 AC 153 ms
31,616 KB
testcase_10 AC 65 ms
16,840 KB
testcase_11 AC 50 ms
14,780 KB
testcase_12 AC 80 ms
20,272 KB
testcase_13 AC 161 ms
33,284 KB
testcase_14 AC 161 ms
32,988 KB
testcase_15 AC 161 ms
32,600 KB
testcase_16 AC 166 ms
34,548 KB
testcase_17 AC 141 ms
29,956 KB
testcase_18 AC 141 ms
29,416 KB
testcase_19 AC 145 ms
29,696 KB
testcase_20 AC 144 ms
29,560 KB
testcase_21 AC 138 ms
32,524 KB
testcase_22 AC 138 ms
31,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import math
def f(a):
    dp = [None] * (len(a) // 2 + 1)
    dp[0] = 0
    for i in range(len(a) // 2):
        dp[i + 1] = dp[i] + a[2 * i] - a[2 * i + 1]
    return dp
def main():
    n = int(input())
    a = list(map(int, input().split()))
    l = f(a)
    r = list(reversed(f(list(reversed(a)))))
    print(max([l[i] + r[i] for i in range(n + 1)]))
if __name__ == "__main__":
    main()
0