結果
問題 | No.609 Noelちゃんと星々 |
ユーザー | tails1434 |
提出日時 | 2020-02-10 07:32:44 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 747 bytes |
コンパイル時間 | 150 ms |
コンパイル使用メモリ | 82,412 KB |
実行使用メモリ | 101,404 KB |
最終ジャッジ日時 | 2024-10-01 06:13:44 |
合計ジャッジ時間 | 7,380 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
def main(): N = int(input()) Y = list(map(int, input().split())) def check(mid_left, mid_right): sum1 = 0 sum2 = 0 for i in range(N): sum1 += abs(mid_left-Y[i]) sum2 += abs(mid_right-Y[i]) if sum1 >= sum2: return True else: return False high = 10 ** 9 + 1 low = -(10**9 + 1) while abs(high - low) > 0.000000001: mid_left = high / 3 + low * 2 /3 mid_right = high * 2 / 3 + low / 3 if check(mid_left, mid_right): low = mid_left else: high = mid_right ans = 0 for i in range(N): ans += abs(int(high) - Y[i]) print(ans) if __name__ == "__main__": main()