結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 39 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 35 ms
11,392 KB
testcase_09 AC 137 ms
30,352 KB
testcase_10 AC 62 ms
16,664 KB
testcase_11 AC 51 ms
14,828 KB
testcase_12 AC 76 ms
19,292 KB
testcase_13 AC 144 ms
32,512 KB
testcase_14 AC 145 ms
32,492 KB
testcase_15 AC 147 ms
32,388 KB
testcase_16 AC 148 ms
32,520 KB
testcase_17 WA -
testcase_18 AC 127 ms
28,924 KB
testcase_19 WA -
testcase_20 AC 130 ms
29,144 KB
testcase_21 AC 130 ms
32,108 KB
testcase_22 AC 128 ms
31,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,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