結果

問題 No.180 美しいWhitespace (2)
ユーザー simansiman
提出日時 2023-05-09 17:52:28
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 429 bytes
コンパイル時間 501 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 45,696 KB
最終ジャッジ日時 2024-11-26 03:39:13
合計ジャッジ時間 40,218 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
12,288 KB
testcase_01 AC 112 ms
12,800 KB
testcase_02 AC 105 ms
12,416 KB
testcase_03 AC 124 ms
13,696 KB
testcase_04 AC 306 ms
15,104 KB
testcase_05 AC 503 ms
17,920 KB
testcase_06 AC 706 ms
21,120 KB
testcase_07 AC 884 ms
26,496 KB
testcase_08 AC 1,078 ms
29,696 KB
testcase_09 AC 2,028 ms
45,568 KB
testcase_10 AC 2,037 ms
45,440 KB
testcase_11 AC 2,036 ms
45,696 KB
testcase_12 AC 2,056 ms
45,568 KB
testcase_13 AC 2,037 ms
45,696 KB
testcase_14 AC 2,013 ms
45,440 KB
testcase_15 AC 2,033 ms
45,440 KB
testcase_16 AC 2,023 ms
45,440 KB
testcase_17 AC 2,040 ms
45,440 KB
testcase_18 AC 2,072 ms
45,440 KB
testcase_19 AC 2,013 ms
45,440 KB
testcase_20 AC 112 ms
12,672 KB
testcase_21 WA -
testcase_22 AC 101 ms
12,288 KB
testcase_23 AC 100 ms
12,416 KB
testcase_24 AC 100 ms
12,544 KB
testcase_25 AC 103 ms
12,416 KB
testcase_26 AC 107 ms
12,416 KB
testcase_27 AC 108 ms
12,544 KB
testcase_28 AC 108 ms
12,544 KB
testcase_29 AC 109 ms
12,800 KB
testcase_30 AC 2,023 ms
45,568 KB
testcase_31 AC 2,004 ms
45,568 KB
testcase_32 AC 2,012 ms
45,568 KB
testcase_33 WA -
testcase_34 AC 1,992 ms
45,312 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