結果

問題 No.609 Noelちゃんと星々
ユーザー yuppe19 😺yuppe19 😺
提出日時 2017-12-09 01:57:48
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 517 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 14,996 KB
最終ジャッジ日時 2024-05-07 07:36:08
合計ジャッジ時間 37,272 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,675 ms
12,888 KB
testcase_01 AC 863 ms
9,656 KB
testcase_02 AC 584 ms
8,468 KB
testcase_03 AC 786 ms
9,240 KB
testcase_04 AC 411 ms
7,808 KB
testcase_05 TLE -
testcase_06 WA -
testcase_07 AC 1,063 ms
10,320 KB
testcase_08 AC 230 ms
6,948 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 1,222 ms
11,116 KB
testcase_12 AC 1,554 ms
12,312 KB
testcase_13 WA -
testcase_14 AC 124 ms
6,944 KB
testcase_15 AC 1,813 ms
13,412 KB
testcase_16 TLE -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
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(100):
    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