結果

問題 No.999 てん vs. ほむ
ユーザー ThetaTheta
提出日時 2022-10-21 14:24:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 35,972 KB
最終ジャッジ日時 2024-07-01 00:15:56
合計ジャッジ時間 4,406 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 31 ms
11,008 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 31 ms
11,008 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 37 ms
11,648 KB
testcase_09 AC 170 ms
33,732 KB
testcase_10 AC 71 ms
17,864 KB
testcase_11 AC 57 ms
15,416 KB
testcase_12 AC 90 ms
21,180 KB
testcase_13 AC 182 ms
35,832 KB
testcase_14 AC 180 ms
35,844 KB
testcase_15 AC 182 ms
35,972 KB
testcase_16 AC 185 ms
35,840 KB
testcase_17 AC 160 ms
32,888 KB
testcase_18 AC 161 ms
32,220 KB
testcase_19 AC 163 ms
32,388 KB
testcase_20 AC 165 ms
32,672 KB
testcase_21 AC 148 ms
32,684 KB
testcase_22 AC 149 ms
31,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
from math import inf


def main():
    N = int(input())
    cards = list(map(int, input().split()))

    left_score = []
    for idx in range(0, 2*N, 2):
        left_score.append(cards[idx] - cards[idx+1])

    right_score = reversed(list(map(lambda num: -num, left_score)))

    left_score_partial_sum = list(accumulate(left_score))
    right_score_partial_sum = list(accumulate(right_score))
    right_score_partial_sum.reverse()

    maximum = max(right_score_partial_sum[0], left_score_partial_sum[-1])
    for idx in range(N-1):
        maximum = max(
            maximum,
            left_score_partial_sum[idx] + right_score_partial_sum[idx+1]
        )
    print(maximum)


if __name__ == "__main__":
    main()
0