結果

問題 No.609 Noelちゃんと星々
ユーザー daku9640daku9640
提出日時 2018-08-11 22:26:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,249 ms / 2,000 ms
コード長 436 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,020 KB
最終ジャッジ日時 2024-09-23 06:33:05
合計ジャッジ時間 21,184 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 906 ms
19,072 KB
testcase_01 AC 494 ms
14,892 KB
testcase_02 AC 347 ms
13,520 KB
testcase_03 AC 450 ms
14,752 KB
testcase_04 AC 241 ms
12,504 KB
testcase_05 AC 1,175 ms
21,252 KB
testcase_06 AC 1,021 ms
19,560 KB
testcase_07 AC 586 ms
16,176 KB
testcase_08 AC 143 ms
11,648 KB
testcase_09 AC 385 ms
13,816 KB
testcase_10 AC 743 ms
17,404 KB
testcase_11 AC 695 ms
16,736 KB
testcase_12 AC 842 ms
18,544 KB
testcase_13 AC 182 ms
12,160 KB
testcase_14 AC 91 ms
11,264 KB
testcase_15 AC 1,013 ms
19,832 KB
testcase_16 AC 1,181 ms
21,340 KB
testcase_17 AC 924 ms
19,092 KB
testcase_18 AC 330 ms
13,564 KB
testcase_19 AC 984 ms
19,600 KB
testcase_20 AC 1,240 ms
21,760 KB
testcase_21 AC 1,249 ms
21,884 KB
testcase_22 AC 1,238 ms
22,016 KB
testcase_23 AC 1,239 ms
22,020 KB
testcase_24 AC 1,238 ms
22,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
y = tuple(map(int, input().split()))
m = {}
def f(a):
    if a not in m:
        cnt = 0
        for b in y:
            cnt += abs(b - a)
        m[a] = cnt
    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