結果

問題 No.999 てん vs. ほむ
ユーザー etale.K3etale.K3
提出日時 2021-05-03 13:42:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 165 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 32,644 KB
最終ジャッジ日時 2024-07-22 03:58:02
合計ジャッジ時間 3,539 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 32 ms
11,520 KB
testcase_09 AC 131 ms
30,656 KB
testcase_10 AC 58 ms
16,660 KB
testcase_11 AC 48 ms
14,824 KB
testcase_12 AC 72 ms
19,408 KB
testcase_13 AC 137 ms
32,640 KB
testcase_14 AC 137 ms
32,644 KB
testcase_15 AC 139 ms
32,644 KB
testcase_16 AC 140 ms
32,644 KB
testcase_17 AC 121 ms
29,224 KB
testcase_18 AC 120 ms
29,052 KB
testcase_19 AC 119 ms
29,204 KB
testcase_20 AC 119 ms
29,392 KB
testcase_21 AC 123 ms
32,252 KB
testcase_22 AC 120 ms
31,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))

B = [0] + [a-b for a,b in zip(A[::2], A[1::2])]

for i in range(N):
    B[i+1] += B[i]

print(max(B)*2 - B[-1])
0