結果

問題 No.999 てん vs. ほむ
ユーザー lloyzlloyz
提出日時 2022-05-22 13:55:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,632 KB
最終ジャッジ日時 2024-09-20 12:34:09
合計ジャッジ時間 3,803 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 33 ms
11,392 KB
testcase_09 AC 172 ms
30,936 KB
testcase_10 AC 72 ms
16,528 KB
testcase_11 AC 56 ms
14,744 KB
testcase_12 AC 92 ms
19,668 KB
testcase_13 AC 192 ms
32,508 KB
testcase_14 AC 188 ms
32,632 KB
testcase_15 AC 192 ms
32,532 KB
testcase_16 AC 188 ms
32,508 KB
testcase_17 AC 177 ms
29,124 KB
testcase_18 AC 170 ms
28,684 KB
testcase_19 AC 174 ms
29,096 KB
testcase_20 AC 176 ms
29,136 KB
testcase_21 AC 185 ms
32,608 KB
testcase_22 AC 176 ms
31,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

count = sum(A[::2]) - sum(A[1::2])
ans = count
for i in range(n - 1, -1, -1):
    count -= A[i * 2] * 2
    count += A[i * 2 + 1] * 2
    ans = max(ans, count)
print(ans)
0