結果

問題 No.609 Noelちゃんと星々
ユーザー yuppe19 😺yuppe19 😺
提出日時 2017-12-09 01:56:34
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 517 bytes
コンパイル時間 745 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 25,568 KB
最終ジャッジ日時 2024-11-29 22:26:35
合計ジャッジ時間 58,852 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1,633 ms
14,524 KB
testcase_02 AC 1,108 ms
22,628 KB
testcase_03 AC 1,474 ms
14,360 KB
testcase_04 AC 730 ms
20,720 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 1,984 ms
15,564 KB
testcase_08 AC 407 ms
20,200 KB
testcase_09 WA -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 WA -
testcase_14 AC 233 ms
11,904 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 WA -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python2
# -*- coding: utf-8 -*-
# †
n = int(raw_input())
y = map(float, raw_input().split())

# 高さを決めたときの、距離の総和を求める
def calc(height):
    res = 0
    for i in xrange(n):
        res += abs(height - y[i])
    return res

lo, hi = -10**9, 10**9

for _ in xrange(200):
    m1 = (lo + lo + hi) / 3.
    m2 = (lo + hi + hi) / 3.
    r1 = calc(m1)
    r2 = calc(m2)
    if r1 < r2:
        hi = m2
    if r1 > r2:
        lo = m1
res = calc(lo)
ires = int(res)
print ires
0