結果

問題 No.999 てん vs. ほむ
ユーザー suisensuisen
提出日時 2024-12-22 22:02:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 192 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 107,448 KB
最終ジャッジ日時 2024-12-22 22:02:58
合計ジャッジ時間 3,768 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,628 KB
testcase_01 AC 48 ms
52,152 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 37 ms
52,848 KB
testcase_04 AC 39 ms
53,048 KB
testcase_05 AC 40 ms
52,280 KB
testcase_06 AC 38 ms
52,852 KB
testcase_07 AC 40 ms
52,440 KB
testcase_08 AC 44 ms
61,472 KB
testcase_09 AC 91 ms
104,700 KB
testcase_10 AC 59 ms
74,516 KB
testcase_11 AC 52 ms
69,080 KB
testcase_12 AC 62 ms
79,476 KB
testcase_13 AC 103 ms
102,008 KB
testcase_14 AC 102 ms
102,096 KB
testcase_15 AC 106 ms
101,748 KB
testcase_16 AC 117 ms
101,972 KB
testcase_17 AC 83 ms
99,456 KB
testcase_18 AC 85 ms
98,844 KB
testcase_19 AC 82 ms
99,108 KB
testcase_20 AC 86 ms
99,808 KB
testcase_21 AC 104 ms
101,828 KB
testcase_22 AC 97 ms
107,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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