結果
問題 | No.837 Noelちゃんと星々2 |
ユーザー | letrangerjp |
提出日時 | 2019-06-14 22:22:10 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 585 bytes |
コンパイル時間 | 49 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 40,848 KB |
最終ジャッジ日時 | 2024-11-14 06:38:35 |
合計ジャッジ時間 | 8,603 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
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 | 95 ms
12,288 KB |
testcase_25 | AC | 94 ms
12,288 KB |
testcase_26 | AC | 93 ms
12,288 KB |
testcase_27 | WA | - |
testcase_28 | AC | 94 ms
12,160 KB |
testcase_29 | AC | 92 ms
12,160 KB |
testcase_30 | AC | 93 ms
12,160 KB |
testcase_31 | AC | 91 ms
12,160 KB |
testcase_32 | AC | 91 ms
12,160 KB |
コンパイルメッセージ
Syntax OK
ソースコード
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! cusum = [sum = 0] + Y.map{|y| sum += y } f = ->idx{ lsum = cusum[idx] lave = lsum.fdiv(idx).round ldist = Y[0...idx].map{|n| (n - lave).abs }.sum rsum = sum - lsum rave = rsum.fdiv(N - idx).round rdist = Y[idx..-1].map{|n| (n - rave).abs }.sum ldist + rdist } l = 1 r = N-1 18.times{ if f[(l * 2 + r) / 3] < f[(l + r * 2) / 3] r = (l + r * 2) / 3 else l = (l * 2 + r) / 3 end } # p [l,r] p f[(l + r) / 2] end