結果

問題 No.2352 Sharpened Knife in Fall
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2023-03-26 11:54:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 333 ms / 3,000 ms
コード長 699 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 79,232 KB
最終ジャッジ日時 2024-09-19 09:45:56
合計ジャッジ時間 6,155 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,736 KB
testcase_01 AC 35 ms
52,352 KB
testcase_02 AC 35 ms
52,480 KB
testcase_03 AC 34 ms
52,096 KB
testcase_04 AC 333 ms
79,232 KB
testcase_05 AC 35 ms
52,352 KB
testcase_06 AC 327 ms
78,720 KB
testcase_07 AC 207 ms
77,544 KB
testcase_08 AC 322 ms
79,104 KB
testcase_09 AC 330 ms
78,532 KB
testcase_10 AC 329 ms
78,848 KB
testcase_11 AC 328 ms
78,464 KB
testcase_12 AC 325 ms
78,652 KB
testcase_13 AC 328 ms
78,628 KB
testcase_14 AC 200 ms
77,964 KB
testcase_15 AC 311 ms
78,976 KB
testcase_16 AC 84 ms
77,016 KB
testcase_17 AC 81 ms
77,348 KB
testcase_18 AC 161 ms
77,644 KB
testcase_19 AC 283 ms
79,104 KB
testcase_20 AC 166 ms
77,056 KB
testcase_21 AC 145 ms
77,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def area(center, r):
    theta = math.acos(center / r)
    sector = r * r * theta
    triangle = center * ((r ** 2 - center ** 2) ** 0.5)
    return sector - triangle

R, K = map(int, input().split())
p = math.acos(-1)
dr = float(R)
S = dr * dr * p
ans = []

for i in range(K // 2):
    portion_s = S * (i + 1) / (K + 1)

    ok = 0
    ng = dr
    for j in range(50):
        center = (ok + ng) / 2
        if area(center, dr) >= portion_s:
            ok = center
        else:
            ng = center
    ans.append(ok)

for i in range(len(ans)):
    print('{:.13g}'.format(-ans[i]))
if K % 2 == 1:
    print(0)
for i in reversed(range(len(ans))):
    print('{:.13g}'.format(ans[i]))
0