結果

問題 No.609 Noelちゃんと星々
ユーザー masaktmasakt
提出日時 2017-12-09 16:46:32
言語 Ruby
(3.3.0)
結果
AC  
実行時間 523 ms / 2,000 ms
コード長 175 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 20,224 KB
最終ジャッジ日時 2024-11-30 05:21:08
合計ジャッジ時間 10,404 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 413 ms
17,664 KB
testcase_01 AC 255 ms
14,848 KB
testcase_02 AC 200 ms
13,696 KB
testcase_03 AC 241 ms
14,464 KB
testcase_04 AC 165 ms
13,184 KB
testcase_05 AC 493 ms
19,584 KB
testcase_06 AC 436 ms
18,048 KB
testcase_07 AC 296 ms
15,616 KB
testcase_08 AC 135 ms
12,544 KB
testcase_09 AC 221 ms
14,080 KB
testcase_10 AC 345 ms
16,640 KB
testcase_11 AC 325 ms
16,256 KB
testcase_12 AC 390 ms
17,280 KB
testcase_13 AC 145 ms
12,544 KB
testcase_14 AC 114 ms
12,288 KB
testcase_15 AC 447 ms
18,176 KB
testcase_16 AC 502 ms
19,712 KB
testcase_17 AC 414 ms
17,792 KB
testcase_18 AC 201 ms
13,568 KB
testcase_19 AC 433 ms
18,176 KB
testcase_20 AC 512 ms
19,968 KB
testcase_21 AC 516 ms
19,968 KB
testcase_22 AC 516 ms
20,096 KB
testcase_23 AC 518 ms
20,224 KB
testcase_24 AC 523 ms
20,096 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n=gets.to_i
a=gets.split.map &:to_i
d=10**99
l=0
r=n-1
a.sort!
32.times{
  c=(l+r)/2
  t=a.reduce(0){|s,y|s+(y-a[c]).abs}
  if t<=d
    d=t
    r=c
  else
    l=c
  end
}
p d
0