結果

問題 No.972 選び方のスコア
ユーザー simansiman
提出日時 2022-11-23 13:45:42
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 545 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 30,848 KB
最終ジャッジ日時 2024-09-24 18:18:11
合計ジャッジ時間 20,761 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 716 ms
30,592 KB
testcase_01 AC 721 ms
30,720 KB
testcase_02 AC 682 ms
28,288 KB
testcase_03 AC 388 ms
20,096 KB
testcase_04 AC 716 ms
30,464 KB
testcase_05 AC 718 ms
30,592 KB
testcase_06 AC 717 ms
30,336 KB
testcase_07 AC 553 ms
25,088 KB
testcase_08 AC 686 ms
30,464 KB
testcase_09 AC 669 ms
29,952 KB
testcase_10 AC 656 ms
30,464 KB
testcase_11 AC 660 ms
30,592 KB
testcase_12 AC 691 ms
30,720 KB
testcase_13 AC 704 ms
30,720 KB
testcase_14 AC 694 ms
30,592 KB
testcase_15 AC 700 ms
30,592 KB
testcase_16 AC 707 ms
30,592 KB
testcase_17 AC 708 ms
30,848 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 87 ms
12,032 KB
testcase_26 AC 87 ms
12,160 KB
testcase_27 AC 86 ms
12,288 KB
testcase_28 AC 87 ms
12,160 KB
testcase_29 AC 87 ms
12,288 KB
testcase_30 AC 86 ms
12,160 KB
testcase_31 AC 87 ms
12,288 KB
testcase_32 AC 88 ms
12,288 KB
testcase_33 AC 87 ms
12,032 KB
testcase_34 AC 87 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map(&:to_i).sort
RUI = [0]

A.each do |a|
  RUI << RUI.last + a
end

ans = 0

1.upto(N - 2) do |mid|
  m = A[mid]

  ok = 0
  ng = mid

  while (ok - ng).abs >= 2
    l = (ok + ng) / 2
    r = N - l - 1

    d1 = A[l] - m
    d2 = A[r] - m

    if d2 - d1 > 0
      ok = l
    else
      ng = l
    end
  end

  len = ok + 1
  sum1 = RUI[ok + 1] - len * m
  sum2 = (RUI[N] - RUI[N - ok - 1]) - len * m
  sum = sum1 + sum2
  # pp [:mid, mid, :ok, ok, :sum1, sum1, :sum2, sum2]

  ans = sum if ans < sum
end

puts ans
0