結果

問題 No.999 てん vs. ほむ
ユーザー hir355hir355
提出日時 2020-04-03 17:38:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 222 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,540 KB
最終ジャッジ日時 2024-07-03 00:58:35
合計ジャッジ時間 4,635 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,368 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 29 ms
10,368 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 36 ms
11,264 KB
testcase_09 AC 204 ms
30,804 KB
testcase_10 AC 82 ms
16,400 KB
testcase_11 AC 64 ms
14,488 KB
testcase_12 AC 108 ms
19,540 KB
testcase_13 AC 226 ms
32,508 KB
testcase_14 AC 222 ms
32,540 KB
testcase_15 AC 220 ms
32,488 KB
testcase_16 AC 220 ms
32,508 KB
testcase_17 AC 202 ms
28,872 KB
testcase_18 AC 196 ms
28,676 KB
testcase_19 AC 198 ms
28,972 KB
testcase_20 AC 204 ms
29,000 KB
testcase_21 AC 199 ms
32,348 KB
testcase_22 AC 192 ms
31,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
t = 0
for i in range(n - 1, -1, -1):
    t += a[i * 2 + 1] - a[i * 2]
ans = t
for i in range(n):
    t += (a[i * 2] - a[i * 2 + 1]) * 2
    ans = max(ans, t)
print(ans)
0