結果

問題 No.837 Noelちゃんと星々2
ユーザー letrangerjpletrangerjp
提出日時 2019-06-14 22:06:23
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 451 bytes
コンパイル時間 43 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 102,144 KB
最終ジャッジ日時 2024-11-14 06:04:03
合計ジャッジ時間 33,468 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 89 ms
12,416 KB
testcase_25 AC 89 ms
12,416 KB
testcase_26 AC 89 ms
12,288 KB
testcase_27 WA -
testcase_28 AC 91 ms
12,160 KB
testcase_29 AC 90 ms
12,288 KB
testcase_30 AC 89 ms
12,160 KB
testcase_31 AC 89 ms
12,416 KB
testcase_32 AC 91 ms
102,144 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
Y = gets.split.map &:to_i
case Y.uniq.size
when 1
  p 1
when 2
  p 0
else
  Y.sort!
  r = Y.dup
  l = []
  lsum = l.sum
  rsum = r.sum
  ans = 1.0/0
  (N-1).times{
    n = r.shift
    l << n
    lsum += n
    rsum -= n
    lave = lsum.fdiv(l.size).round
    ldist = l.map{|n| (n - lave).abs }.sum
    rave = rsum.fdiv(r.size).round
    rdist = r.map{|n| (n - rave).abs }.sum
    ans = ldist + rdist if ldist + rdist < ans
  }
  p ans
end
0