結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,758 ms
12,636 KB
testcase_01 AC 888 ms
9,528 KB
testcase_02 AC 604 ms
8,472 KB
testcase_03 AC 816 ms
9,244 KB
testcase_04 AC 403 ms
7,552 KB
testcase_05 TLE -
testcase_06 WA -
testcase_07 AC 1,103 ms
10,192 KB
testcase_08 AC 232 ms
7,040 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 1,274 ms
10,860 KB
testcase_12 AC 1,615 ms
12,312 KB
testcase_13 WA -
testcase_14 AC 128 ms
6,656 KB
testcase_15 AC 1,916 ms
13,540 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