結果

問題 No.609 Noelちゃんと星々
ユーザー takakintakakin
提出日時 2020-05-24 20:51:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,329 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,880 KB
最終ジャッジ日時 2024-10-12 06:16:11
合計ジャッジ時間 23,449 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,009 ms
18,936 KB
testcase_01 AC 519 ms
14,960 KB
testcase_02 AC 369 ms
13,644 KB
testcase_03 AC 483 ms
14,488 KB
testcase_04 AC 256 ms
12,388 KB
testcase_05 AC 1,254 ms
20,992 KB
testcase_06 AC 1,068 ms
19,728 KB
testcase_07 AC 655 ms
15,912 KB
testcase_08 AC 155 ms
11,776 KB
testcase_09 AC 419 ms
13,936 KB
testcase_10 AC 796 ms
17,152 KB
testcase_11 AC 741 ms
16,728 KB
testcase_12 AC 932 ms
18,420 KB
testcase_13 AC 194 ms
12,160 KB
testcase_14 AC 95 ms
11,264 KB
testcase_15 AC 1,098 ms
19,696 KB
testcase_16 AC 1,279 ms
21,204 KB
testcase_17 AC 1,007 ms
18,828 KB
testcase_18 AC 358 ms
13,360 KB
testcase_19 AC 1,062 ms
19,468 KB
testcase_20 AC 1,326 ms
21,744 KB
testcase_21 AC 1,312 ms
21,756 KB
testcase_22 AC 1,324 ms
21,624 KB
testcase_23 AC 1,320 ms
21,880 KB
testcase_24 AC 1,329 ms
21,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
Y=[int(i) for i in input().split()]

def f(x):
  ret=0
  for y in Y:
    ret+=abs(y-x)
  return ret

l,r=min(Y),max(Y)

while r-l>2:
  mid1,mid2=l+(r-l)//3,r-(r-l)//3
  if f(mid1)<=f(mid2):
    r=mid2
  else:
    l=mid1
print(min(f(l),f(l+1),f(r)))
0