結果

問題 No.999 てん vs. ほむ
ユーザー 12354865271235486527
提出日時 2020-03-20 04:03:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 281 ms / 2,000 ms
コード長 263 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,736 KB
最終ジャッジ日時 2024-12-14 03:56:18
合計ジャッジ時間 4,786 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 39 ms
11,392 KB
testcase_09 AC 254 ms
30,936 KB
testcase_10 AC 99 ms
16,656 KB
testcase_11 AC 75 ms
14,724 KB
testcase_12 AC 127 ms
19,668 KB
testcase_13 AC 276 ms
32,640 KB
testcase_14 AC 276 ms
32,636 KB
testcase_15 AC 281 ms
32,640 KB
testcase_16 AC 279 ms
32,640 KB
testcase_17 AC 253 ms
29,132 KB
testcase_18 AC 246 ms
28,812 KB
testcase_19 AC 248 ms
29,328 KB
testcase_20 AC 250 ms
29,264 KB
testcase_21 AC 254 ms
32,736 KB
testcase_22 AC 245 ms
31,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
lft = [0]
rgt = [0]
for i in range(N):
    lft.append(lft[-1] + A[i*2] - A[i*2+1])
    rgt.append(rgt[-1] + A[-i*2-1] - A[-i*2-2])
ans = 0
for i in range(N+1):
    ans = max(ans, lft[i] + rgt[-i-1])
print(ans)
0