結果

問題 No.999 てん vs. ほむ
ユーザー maspymaspy
提出日時 2020-03-02 21:15:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 537 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 53,752 KB
最終ジャッジ日時 2024-10-13 21:17:51
合計ジャッジ時間 14,428 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 476 ms
43,956 KB
testcase_01 AC 471 ms
43,828 KB
testcase_02 AC 477 ms
43,956 KB
testcase_03 AC 467 ms
44,480 KB
testcase_04 AC 476 ms
44,088 KB
testcase_05 AC 474 ms
43,964 KB
testcase_06 AC 478 ms
44,468 KB
testcase_07 AC 475 ms
44,224 KB
testcase_08 AC 478 ms
43,824 KB
testcase_09 AC 518 ms
52,168 KB
testcase_10 AC 487 ms
45,156 KB
testcase_11 AC 477 ms
44,088 KB
testcase_12 AC 501 ms
46,388 KB
testcase_13 AC 522 ms
53,372 KB
testcase_14 AC 534 ms
53,752 KB
testcase_15 AC 537 ms
53,224 KB
testcase_16 AC 529 ms
53,372 KB
testcase_17 AC 516 ms
52,036 KB
testcase_18 AC 513 ms
52,416 KB
testcase_19 AC 523 ms
52,488 KB
testcase_20 AC 522 ms
52,372 KB
testcase_21 AC 527 ms
53,456 KB
testcase_22 AC 515 ms
53,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines


# %%
import numpy as np

# %%
N = int(readline())
A = np.array(read().split(), np.int64)

# %%
from_left = np.zeros(N + 1, np.int64)
from_left[1:] = (A[::2] - A[1::2]).cumsum()


# %%
from_right = np.zeros(N + 1, np.int64)
from_right[1:] = (A[::-1][::2] - A[::-1][1::2]).cumsum()
from_right = from_right[::-1]

# %%
answer = (from_left + from_right).max()
print(answer)
0