結果

問題 No.999 てん vs. ほむ
ユーザー rythem00359rythem00359
提出日時 2020-08-27 14:32:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 166 bytes
コンパイル時間 873 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,632 KB
最終ジャッジ日時 2024-11-07 17:39:33
合計ジャッジ時間 3,585 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 33 ms
11,392 KB
testcase_09 AC 116 ms
31,048 KB
testcase_10 AC 55 ms
16,528 KB
testcase_11 AC 46 ms
14,596 KB
testcase_12 AC 67 ms
19,664 KB
testcase_13 AC 125 ms
32,632 KB
testcase_14 AC 127 ms
32,504 KB
testcase_15 AC 127 ms
32,632 KB
testcase_16 AC 127 ms
32,504 KB
testcase_17 WA -
testcase_18 AC 110 ms
28,796 KB
testcase_19 WA -
testcase_20 AC 111 ms
29,260 KB
testcase_21 AC 109 ms
32,608 KB
testcase_22 AC 110 ms
31,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
n=int(input())
a=[*map(int,input().split())]
r1=[x-y for x,y in zip(a[::2],a[1::2])]
r2=list(accumulate(r1))
print(max(r2)*2-sum(r1))
0