結果

問題 No.972 選び方のスコア
ユーザー simansiman
提出日時 2022-11-23 14:12:11
言語 Ruby
(3.3.0)
結果
AC  
実行時間 740 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 591 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 30,848 KB
最終ジャッジ日時 2024-09-24 18:37:29
合計ジャッジ時間 20,582 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 717 ms
30,592 KB
testcase_01 AC 740 ms
30,592 KB
testcase_02 AC 685 ms
28,288 KB
testcase_03 AC 390 ms
20,096 KB
testcase_04 AC 719 ms
30,336 KB
testcase_05 AC 722 ms
30,464 KB
testcase_06 AC 734 ms
30,336 KB
testcase_07 AC 550 ms
25,216 KB
testcase_08 AC 696 ms
30,592 KB
testcase_09 AC 671 ms
30,080 KB
testcase_10 AC 655 ms
30,464 KB
testcase_11 AC 654 ms
30,720 KB
testcase_12 AC 658 ms
30,592 KB
testcase_13 AC 711 ms
30,848 KB
testcase_14 AC 659 ms
30,720 KB
testcase_15 AC 707 ms
30,720 KB
testcase_16 AC 702 ms
30,720 KB
testcase_17 AC 699 ms
30,720 KB
testcase_18 AC 86 ms
12,160 KB
testcase_19 AC 722 ms
30,208 KB
testcase_20 AC 718 ms
30,336 KB
testcase_21 AC 718 ms
30,336 KB
testcase_22 AC 697 ms
29,824 KB
testcase_23 AC 722 ms
30,208 KB
testcase_24 AC 714 ms
30,080 KB
testcase_25 AC 86 ms
12,160 KB
testcase_26 AC 86 ms
12,288 KB
testcase_27 AC 86 ms
12,160 KB
testcase_28 AC 87 ms
12,160 KB
testcase_29 AC 87 ms
12,160 KB
testcase_30 AC 89 ms
12,160 KB
testcase_31 AC 85 ms
12,288 KB
testcase_32 AC 85 ms
12,288 KB
testcase_33 AC 86 ms
12,288 KB
testcase_34 AC 85 ms
12,416 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 + 1

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

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

    if d2 + d1 > 0
      ok = len
    else
      ng = len
    end
  end

  len = ok
  sum1 = RUI[mid] - RUI[mid - len]
  sum2 = RUI[N] - RUI[N - len]
  sum = sum1 + sum2 - 2 * len * m

  ans = sum if ans < sum
end

puts ans
0