結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,068 KB
testcase_01 AC 37 ms
53,352 KB
testcase_02 AC 37 ms
53,944 KB
testcase_03 AC 37 ms
52,312 KB
testcase_04 AC 37 ms
52,756 KB
testcase_05 AC 38 ms
52,832 KB
testcase_06 AC 44 ms
52,184 KB
testcase_07 AC 37 ms
52,536 KB
testcase_08 AC 46 ms
61,464 KB
testcase_09 AC 91 ms
104,388 KB
testcase_10 AC 58 ms
77,356 KB
testcase_11 AC 53 ms
70,680 KB
testcase_12 AC 64 ms
83,928 KB
testcase_13 AC 102 ms
104,880 KB
testcase_14 AC 103 ms
104,976 KB
testcase_15 AC 102 ms
105,504 KB
testcase_16 AC 100 ms
104,840 KB
testcase_17 AC 82 ms
105,648 KB
testcase_18 AC 83 ms
104,820 KB
testcase_19 AC 84 ms
106,200 KB
testcase_20 AC 83 ms
106,504 KB
testcase_21 AC 116 ms
105,044 KB
testcase_22 AC 91 ms
107,344 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