結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 891 ms
19,068 KB
testcase_01 AC 489 ms
14,884 KB
testcase_02 AC 340 ms
13,516 KB
testcase_03 AC 444 ms
14,492 KB
testcase_04 AC 237 ms
12,628 KB
testcase_05 AC 1,164 ms
21,116 KB
testcase_06 AC 1,014 ms
19,556 KB
testcase_07 AC 583 ms
15,908 KB
testcase_08 AC 142 ms
11,648 KB
testcase_09 AC 380 ms
13,936 KB
testcase_10 AC 736 ms
17,404 KB
testcase_11 AC 687 ms
16,576 KB
testcase_12 AC 837 ms
18,412 KB
testcase_13 AC 183 ms
12,032 KB
testcase_14 AC 93 ms
11,264 KB
testcase_15 AC 1,004 ms
19,820 KB
testcase_16 AC 1,164 ms
21,332 KB
testcase_17 AC 912 ms
19,084 KB
testcase_18 AC 328 ms
13,480 KB
testcase_19 AC 979 ms
19,848 KB
testcase_20 AC 1,234 ms
21,880 KB
testcase_21 AC 1,234 ms
21,884 KB
testcase_22 AC 1,236 ms
22,008 KB
testcase_23 AC 1,232 ms
21,968 KB
testcase_24 AC 1,223 ms
21,752 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)
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