結果

問題 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
コンパイル時間 274 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,632 KB
最終ジャッジ日時 2024-04-25 07:21:42
合計ジャッジ時間 3,526 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 34 ms
11,264 KB
testcase_09 AC 121 ms
30,800 KB
testcase_10 AC 56 ms
16,684 KB
testcase_11 AC 49 ms
14,592 KB
testcase_12 AC 66 ms
19,660 KB
testcase_13 AC 127 ms
32,632 KB
testcase_14 AC 124 ms
32,500 KB
testcase_15 AC 125 ms
32,632 KB
testcase_16 AC 125 ms
32,628 KB
testcase_17 WA -
testcase_18 AC 108 ms
28,548 KB
testcase_19 WA -
testcase_20 AC 111 ms
29,124 KB
testcase_21 AC 107 ms
32,476 KB
testcase_22 AC 108 ms
31,488 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