結果

問題 No.999 てん vs. ほむ
ユーザー yansi819yansi819
提出日時 2024-05-11 12:03:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 107,440 KB
最終ジャッジ日時 2024-12-20 08:26:38
合計ジャッジ時間 2,852 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,828 KB
testcase_01 AC 40 ms
51,936 KB
testcase_02 AC 39 ms
52,932 KB
testcase_03 AC 39 ms
53,444 KB
testcase_04 AC 40 ms
53,216 KB
testcase_05 AC 40 ms
52,488 KB
testcase_06 AC 41 ms
52,464 KB
testcase_07 AC 40 ms
52,584 KB
testcase_08 AC 48 ms
61,924 KB
testcase_09 AC 95 ms
104,420 KB
testcase_10 AC 61 ms
75,888 KB
testcase_11 AC 55 ms
70,828 KB
testcase_12 AC 70 ms
82,952 KB
testcase_13 AC 108 ms
104,748 KB
testcase_14 AC 109 ms
105,004 KB
testcase_15 AC 111 ms
104,976 KB
testcase_16 AC 110 ms
104,988 KB
testcase_17 AC 89 ms
105,872 KB
testcase_18 AC 87 ms
105,368 KB
testcase_19 AC 90 ms
106,392 KB
testcase_20 AC 90 ms
107,440 KB
testcase_21 AC 110 ms
104,892 KB
testcase_22 AC 100 ms
107,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

V = []
for i in range(0, 2 * N, 2):
    a = A[i]
    b = A[i + 1]
    V.append(a - b)

S = sum(V)
ma = S
for i in range(N - 1, -1, -1):
    S -= 2 * V[i]
    ma = max(ma, S)
print(ma)
0