結果

問題 No.609 Noelちゃんと星々
ユーザー daku9640daku9640
提出日時 2018-08-11 22:37:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,719 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 22,032 KB
最終ジャッジ日時 2024-09-23 06:37:07
合計ジャッジ時間 29,057 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,235 ms
19,084 KB
testcase_01 AC 667 ms
14,940 KB
testcase_02 AC 466 ms
14,548 KB
testcase_03 AC 603 ms
15,532 KB
testcase_04 AC 321 ms
13,276 KB
testcase_05 AC 1,654 ms
21,128 KB
testcase_06 AC 1,397 ms
19,904 KB
testcase_07 AC 793 ms
16,060 KB
testcase_08 AC 185 ms
11,776 KB
testcase_09 AC 521 ms
15,616 KB
testcase_10 AC 1,013 ms
17,368 KB
testcase_11 AC 946 ms
17,240 KB
testcase_12 AC 1,148 ms
18,432 KB
testcase_13 AC 239 ms
12,288 KB
testcase_14 AC 114 ms
11,264 KB
testcase_15 AC 1,409 ms
20,104 KB
testcase_16 AC 1,615 ms
21,360 KB
testcase_17 AC 1,269 ms
19,096 KB
testcase_18 AC 444 ms
14,516 KB
testcase_19 AC 1,354 ms
19,872 KB
testcase_20 AC 1,717 ms
22,032 KB
testcase_21 AC 1,714 ms
21,904 KB
testcase_22 AC 1,719 ms
21,904 KB
testcase_23 AC 1,707 ms
21,908 KB
testcase_24 AC 1,702 ms
21,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
n = int(input())
y = tuple(map(int, input().split()))
m = {}
def f(a):
    if a not in m:
        m[a] = tuple(itertools.accumulate(abs(b - a) for b in y))[-1]
    return m[a]
l = min(y)
r = max(y)
while r - l > 10:
    mid_l = (l * 2 + r) // 3
    mid_r = (l + r * 2) // 3
    if f(mid_l) > f(mid_r):
        l = mid_l
    else:
        r = mid_r
ans = 1e15
for i in range(l, r + 1):
    ans = min(ans, f(i))
print(ans)
0