結果

問題 No.999 てん vs. ほむ
ユーザー _matumo__matumo_
提出日時 2020-07-19 23:41:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 148 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,516 KB
最終ジャッジ日時 2024-05-09 23:54:52
合計ジャッジ時間 3,384 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 33 ms
10,624 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 33 ms
11,264 KB
testcase_09 AC 140 ms
30,480 KB
testcase_10 AC 62 ms
16,532 KB
testcase_11 AC 51 ms
14,824 KB
testcase_12 AC 78 ms
19,404 KB
testcase_13 AC 154 ms
32,516 KB
testcase_14 AC 154 ms
32,492 KB
testcase_15 AC 152 ms
32,512 KB
testcase_16 AC 152 ms
32,388 KB
testcase_17 WA -
testcase_18 AC 131 ms
28,672 KB
testcase_19 WA -
testcase_20 AC 133 ms
29,016 KB
testcase_21 AC 137 ms
32,132 KB
testcase_22 AC 141 ms
31,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=[int(s) for s in input().split()]
B=[a-b for a,b in zip(A[::2],A[1::2])]
for i in range(N-1):    B[i+1]+=B[i]
print(max(B)*2-B[-1])
0