結果

問題 No.2352 Sharpened Knife in Fall
ユーザー simansiman
提出日時 2023-09-07 22:18:36
言語 Ruby
(3.3.0)
結果
AC  
実行時間 2,434 ms / 3,000 ms
コード長 419 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-06-25 15:55:42
合計ジャッジ時間 35,010 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
12,288 KB
testcase_01 AC 86 ms
12,160 KB
testcase_02 AC 87 ms
12,544 KB
testcase_03 AC 88 ms
12,288 KB
testcase_04 AC 2,286 ms
14,336 KB
testcase_05 AC 86 ms
12,160 KB
testcase_06 AC 2,369 ms
14,336 KB
testcase_07 AC 1,218 ms
13,440 KB
testcase_08 AC 2,434 ms
14,464 KB
testcase_09 AC 2,334 ms
14,592 KB
testcase_10 AC 2,420 ms
14,464 KB
testcase_11 AC 2,332 ms
14,336 KB
testcase_12 AC 2,319 ms
14,464 KB
testcase_13 AC 2,316 ms
14,592 KB
testcase_14 AC 1,143 ms
13,568 KB
testcase_15 AC 2,211 ms
14,464 KB
testcase_16 AC 200 ms
12,544 KB
testcase_17 AC 136 ms
12,288 KB
testcase_18 AC 916 ms
13,312 KB
testcase_19 AC 1,856 ms
14,080 KB
testcase_20 AC 779 ms
13,184 KB
testcase_21 AC 744 ms
13,184 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

R, K = gets.split.map(&:to_i)

def f(c, r)
  r * r * Math.acos(c / r.to_f) - c * Math.sqrt(r ** 2 - c ** 2)
end

S = R * R * Math::PI
ans = []

(K / 2).times do |i|
  s = S * (i + 1) / (K + 1)

  ok = 0
  ng = R.to_f
  loop_cnt = 100

  loop_cnt.times do
    c = (ok + ng) / 2.0

    if f(c, R) >= s
      ok = c
    else
      ng = c
    end
  end

  ans << ok
  ans << -ok
end

ans << 0 if K.odd?
ans.sort!

puts ans
0