結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 549 ms
19,060 KB
testcase_01 AC 286 ms
14,876 KB
testcase_02 AC 205 ms
13,640 KB
testcase_03 WA -
testcase_04 AC 146 ms
12,372 KB
testcase_05 AC 666 ms
21,112 KB
testcase_06 AC 569 ms
19,592 KB
testcase_07 AC 356 ms
15,908 KB
testcase_08 AC 97 ms
11,776 KB
testcase_09 AC 236 ms
13,932 KB
testcase_10 AC 427 ms
17,396 KB
testcase_11 AC 402 ms
16,852 KB
testcase_12 AC 509 ms
18,408 KB
testcase_13 AC 116 ms
12,032 KB
testcase_14 AC 65 ms
11,392 KB
testcase_15 AC 587 ms
19,824 KB
testcase_16 AC 691 ms
21,324 KB
testcase_17 WA -
testcase_18 AC 203 ms
13,352 KB
testcase_19 AC 569 ms
19,720 KB
testcase_20 AC 697 ms
22,004 KB
testcase_21 AC 694 ms
21,924 KB
testcase_22 AC 701 ms
21,876 KB
testcase_23 AC 693 ms
22,008 KB
testcase_24 AC 700 ms
22,000 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:
    if f(l) > f(r):
        l = (l * 2 + r) // 3
    else:
        r = (l + r * 2) // 3
print(min(f(l), f(l + 1), f(l + 2)))
0