結果

問題 No.2352 Sharpened Knife in Fall
ユーザー naut3naut3
提出日時 2023-06-18 03:19:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 366 ms / 3,000 ms
コード長 596 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 77,484 KB
最終ジャッジ日時 2024-06-25 15:48:37
合計ジャッジ時間 10,921 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,952 KB
testcase_01 AC 39 ms
53,168 KB
testcase_02 AC 40 ms
52,752 KB
testcase_03 AC 40 ms
53,048 KB
testcase_04 AC 259 ms
77,304 KB
testcase_05 AC 39 ms
53,452 KB
testcase_06 AC 360 ms
77,344 KB
testcase_07 AC 227 ms
76,708 KB
testcase_08 AC 366 ms
77,064 KB
testcase_09 AC 362 ms
77,300 KB
testcase_10 AC 362 ms
76,996 KB
testcase_11 AC 363 ms
77,108 KB
testcase_12 AC 364 ms
76,968 KB
testcase_13 AC 350 ms
77,388 KB
testcase_14 AC 208 ms
76,824 KB
testcase_15 AC 321 ms
77,484 KB
testcase_16 AC 99 ms
76,604 KB
testcase_17 AC 96 ms
76,824 KB
testcase_18 AC 181 ms
76,528 KB
testcase_19 AC 307 ms
76,968 KB
testcase_20 AC 166 ms
76,928 KB
testcase_21 AC 167 ms
77,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

R, K = map(int, input().split())
PI = math.pi

for i in range(K):
    S = PI * R * R * (i+1) / (K+1)

    ok = -R
    ng = R

    while ng - ok > 0.000001:
        h = (ok + ng) / 2

        if h < 0:
            theta = 2 * math.acos(abs(h) / R)
        else:
            theta = 2 * (PI - math.acos(abs(h) / R))

        T = R * R * theta / 2

        if h < 0:
            T -= math.sqrt(R * R - h * h) * abs(h)
        else:
            T += math.sqrt(R * R - h * h) * abs(h)

        if S < T:
            ng = h
        else:
            ok = h

    print("{:.7f}".format(ok))
0