結果

問題 No.999 てん vs. ほむ
ユーザー ああいいああいい
提出日時 2021-12-05 18:03:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,508 KB
最終ジャッジ日時 2024-07-07 08:25:03
合計ジャッジ時間 4,284 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,368 KB
testcase_01 AC 26 ms
10,368 KB
testcase_02 AC 27 ms
10,496 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 25 ms
10,496 KB
testcase_05 AC 25 ms
10,368 KB
testcase_06 AC 29 ms
10,496 KB
testcase_07 AC 26 ms
10,496 KB
testcase_08 AC 30 ms
11,136 KB
testcase_09 AC 170 ms
30,680 KB
testcase_10 AC 69 ms
16,396 KB
testcase_11 AC 53 ms
14,560 KB
testcase_12 AC 89 ms
19,532 KB
testcase_13 AC 178 ms
32,468 KB
testcase_14 AC 179 ms
32,500 KB
testcase_15 AC 182 ms
32,508 KB
testcase_16 AC 197 ms
32,380 KB
testcase_17 AC 171 ms
28,868 KB
testcase_18 AC 161 ms
28,672 KB
testcase_19 AC 165 ms
29,064 KB
testcase_20 AC 159 ms
28,996 KB
testcase_21 AC 161 ms
32,344 KB
testcase_22 AC 163 ms
31,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
_max = 0
for i in range(N):
    _max += -A[i * 2] + A[i * 2 + 1]
now = _max
for i in range(0,N):
    now += 2 * A[i * 2] - 2 * A[i * 2 + 1]
    if now > _max:
        _max = now
print(_max)
0