結果

問題 No.2352 Sharpened Knife in Fall
ユーザー miya145592miya145592
提出日時 2023-06-16 23:29:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 314 ms / 3,000 ms
コード長 481 bytes
コンパイル時間 447 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 79,056 KB
最終ジャッジ日時 2024-06-24 16:46:49
合計ジャッジ時間 11,218 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,736 KB
testcase_01 AC 41 ms
52,608 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 262 ms
78,812 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 314 ms
78,976 KB
testcase_07 AC 195 ms
77,768 KB
testcase_08 AC 310 ms
78,456 KB
testcase_09 AC 309 ms
78,848 KB
testcase_10 AC 303 ms
79,056 KB
testcase_11 AC 305 ms
78,528 KB
testcase_12 AC 309 ms
78,568 KB
testcase_13 AC 304 ms
78,908 KB
testcase_14 AC 188 ms
77,824 KB
testcase_15 AC 278 ms
78,640 KB
testcase_16 AC 94 ms
76,672 KB
testcase_17 AC 87 ms
77,632 KB
testcase_18 AC 164 ms
77,312 KB
testcase_19 AC 266 ms
78,140 KB
testcase_20 AC 153 ms
77,312 KB
testcase_21 AC 151 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
R, K = map(int, input().split())
S = math.pi*R*R/(K+1)
ans = []
for k in range(K//2):
    l = 0
    r = R
    while r-l>10**(-6):
        mid = (l+r)/2
        theta = math.acos(mid/R)
        s = math.pi*R*R * theta / math.pi
        s -= mid * R * math.sin(theta)
        if s > S*(k+1):
            l = mid
        else:
            r = mid
    mid = (l+r)/2
    ans.append(mid)

for a in ans:
    print(-a)
if K%2==1:
    print(0)
for a in ans[::-1]:
    print(a)

0