結果

問題 No.180 美しいWhitespace (2)
ユーザー simansiman
提出日時 2023-05-09 17:52:28
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 429 bytes
コンパイル時間 50 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 45,824 KB
最終ジャッジ日時 2024-05-04 15:24:42
合計ジャッジ時間 34,557 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,544 KB
testcase_01 AC 98 ms
12,800 KB
testcase_02 AC 89 ms
12,672 KB
testcase_03 AC 104 ms
13,824 KB
testcase_04 AC 264 ms
15,232 KB
testcase_05 AC 428 ms
18,304 KB
testcase_06 AC 601 ms
20,992 KB
testcase_07 AC 773 ms
26,496 KB
testcase_08 AC 998 ms
29,696 KB
testcase_09 AC 1,786 ms
45,696 KB
testcase_10 AC 1,777 ms
45,824 KB
testcase_11 AC 1,796 ms
45,568 KB
testcase_12 AC 1,785 ms
45,568 KB
testcase_13 AC 1,774 ms
45,568 KB
testcase_14 AC 1,770 ms
45,568 KB
testcase_15 AC 1,787 ms
45,440 KB
testcase_16 AC 1,788 ms
45,440 KB
testcase_17 AC 1,806 ms
45,568 KB
testcase_18 AC 1,783 ms
45,568 KB
testcase_19 AC 1,869 ms
45,568 KB
testcase_20 AC 94 ms
12,416 KB
testcase_21 WA -
testcase_22 AC 94 ms
12,544 KB
testcase_23 AC 87 ms
12,544 KB
testcase_24 AC 89 ms
12,544 KB
testcase_25 AC 94 ms
12,544 KB
testcase_26 AC 94 ms
12,416 KB
testcase_27 AC 95 ms
12,416 KB
testcase_28 AC 95 ms
12,672 KB
testcase_29 AC 98 ms
12,928 KB
testcase_30 AC 1,784 ms
45,824 KB
testcase_31 AC 1,826 ms
45,696 KB
testcase_32 AC 1,802 ms
45,696 KB
testcase_33 WA -
testcase_34 AC 1,816 ms
45,440 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
Q = N.times.map { gets.split.map(&:to_i) }

def ternary_search_tree(left, right)
  loop_cnt = 10000

  loop_cnt.times do
    if yield((left * 2 + right) / 3) <= yield((left + right * 2) / 3)
      right = (left + right * 2) / 3
    else
      left = (left * 2 + right) / 3
    end
  end

  (left + right) / 2
end

t = ternary_search_tree(1, 10 ** 9) { |x|
  u, v = Q.map { |a, b| a + b * x }.minmax
  v - u
}

pp t
0