結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 907 ms
19,320 KB
testcase_01 AC 492 ms
15,012 KB
testcase_02 AC 335 ms
13,640 KB
testcase_03 AC 445 ms
14,612 KB
testcase_04 AC 236 ms
12,628 KB
testcase_05 AC 1,146 ms
21,116 KB
testcase_06 AC 1,013 ms
19,552 KB
testcase_07 AC 584 ms
16,040 KB
testcase_08 AC 145 ms
11,904 KB
testcase_09 AC 380 ms
14,064 KB
testcase_10 AC 729 ms
17,528 KB
testcase_11 AC 676 ms
16,856 KB
testcase_12 AC 840 ms
18,416 KB
testcase_13 AC 181 ms
12,160 KB
testcase_14 AC 91 ms
11,392 KB
testcase_15 AC 1,011 ms
19,824 KB
testcase_16 AC 1,169 ms
21,456 KB
testcase_17 AC 917 ms
19,208 KB
testcase_18 AC 328 ms
13,476 KB
testcase_19 AC 964 ms
19,740 KB
testcase_20 AC 1,203 ms
22,004 KB
testcase_21 AC 1,214 ms
22,008 KB
testcase_22 AC 1,202 ms
22,008 KB
testcase_23 AC 1,212 ms
21,884 KB
testcase_24 AC 1,205 ms
22,132 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 > 2:
    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
print(min(f(l), f(l + 1), f(l + 2)))
0