結果

問題 No.2352 Sharpened Knife in Fall
ユーザー ntudantuda
提出日時 2023-06-17 11:17:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 606 ms / 3,000 ms
コード長 633 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 80,512 KB
最終ジャッジ日時 2024-06-25 02:50:25
合計ジャッジ時間 14,291 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,480 KB
testcase_01 AC 42 ms
52,480 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 412 ms
79,872 KB
testcase_05 AC 41 ms
52,480 KB
testcase_06 AC 595 ms
80,128 KB
testcase_07 AC 351 ms
78,208 KB
testcase_08 AC 599 ms
80,512 KB
testcase_09 AC 597 ms
80,000 KB
testcase_10 AC 606 ms
80,408 KB
testcase_11 AC 602 ms
80,128 KB
testcase_12 AC 602 ms
80,384 KB
testcase_13 AC 575 ms
79,884 KB
testcase_14 AC 312 ms
78,464 KB
testcase_15 AC 527 ms
79,872 KB
testcase_16 AC 122 ms
76,544 KB
testcase_17 AC 111 ms
76,672 KB
testcase_18 AC 268 ms
78,336 KB
testcase_19 AC 492 ms
79,416 KB
testcase_20 AC 246 ms
77,184 KB
testcase_21 AC 245 ms
77,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import *

def check(y, S):
    global theta
    x = (R * R - y * y) ** 0.5
    if y == 0:
        s = S0 / 2
    elif y > 0:
        theta = atan(x / y)
        s = R * R * theta - y * x
    else:
        y = -y
        theta = atan(x / y)
        s = S0 - R * R * theta + y * x
    return s < S

R, K = map(int, input().split())
S0 = pi * R * R
SP = S0 / (K + 1)
ans = []
ST = S0
for i in range(K):
    ST -= SP
    lb = -R
    ub = R
    while ub - lb > 0.000001:
        mid = (lb + ub) / 2
        if check(mid, ST):
            ub = mid
        else:
            lb = mid
    ans.append(lb)
for a in ans:
    print(a)
0