結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 891 ms
19,064 KB
testcase_01 AC 484 ms
14,888 KB
testcase_02 AC 334 ms
13,516 KB
testcase_03 AC 439 ms
14,712 KB
testcase_04 AC 233 ms
12,500 KB
testcase_05 AC 1,125 ms
21,116 KB
testcase_06 AC 998 ms
19,552 KB
testcase_07 AC 573 ms
16,044 KB
testcase_08 AC 142 ms
12,032 KB
testcase_09 AC 373 ms
13,996 KB
testcase_10 AC 721 ms
17,268 KB
testcase_11 AC 673 ms
16,984 KB
testcase_12 AC 837 ms
18,284 KB
testcase_13 AC 178 ms
12,160 KB
testcase_14 AC 91 ms
11,392 KB
testcase_15 AC 989 ms
19,824 KB
testcase_16 AC 1,148 ms
21,332 KB
testcase_17 AC 904 ms
19,212 KB
testcase_18 AC 324 ms
13,604 KB
testcase_19 AC 952 ms
19,728 KB
testcase_20 AC 1,195 ms
22,008 KB
testcase_21 AC 1,186 ms
21,884 KB
testcase_22 AC 1,192 ms
21,884 KB
testcase_23 AC 1,194 ms
21,852 KB
testcase_24 AC 1,199 ms
22,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
y = tuple(map(int, input().split()))
m = {}
def f(a):
    if a not in m:
        m[a] = sum(abs(b - a) for b in y)
    return m[a]
l = min(y)
r = max(y)
for _ in range(100):
    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