結果

問題 No.2352 Sharpened Knife in Fall
ユーザー flygonflygon
提出日時 2023-06-16 23:26:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 518 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 102,616 KB
最終ジャッジ日時 2024-06-24 16:44:28
合計ジャッジ時間 14,670 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,576 KB
testcase_01 AC 35 ms
53,752 KB
testcase_02 AC 35 ms
53,280 KB
testcase_03 AC 35 ms
52,704 KB
testcase_04 AC 645 ms
101,344 KB
testcase_05 AC 35 ms
52,264 KB
testcase_06 AC 643 ms
101,000 KB
testcase_07 AC 355 ms
88,128 KB
testcase_08 AC 665 ms
101,292 KB
testcase_09 AC 653 ms
102,616 KB
testcase_10 AC 648 ms
101,164 KB
testcase_11 AC 652 ms
101,252 KB
testcase_12 AC 652 ms
101,060 KB
testcase_13 AC 665 ms
101,352 KB
testcase_14 AC 350 ms
86,356 KB
testcase_15 AC 623 ms
102,252 KB
testcase_16 AC 95 ms
77,184 KB
testcase_17 AC 81 ms
77,240 KB
testcase_18 AC 280 ms
84,864 KB
testcase_19 AC 528 ms
97,260 KB
testcase_20 WA -
testcase_21 AC 239 ms
83,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import acos, degrees, pi
R,K = map(int,input().split())
S = pi*R*R

ans = [R]
for i in range((K+1)//2):
    now = (i+1)*S/(K+1)
    l = 0
    r = R
    for _ in range(100):
        y = (r+l)/2
        xx = R*R - y*y
        th = degrees(acos((-xx+y*y)/(R*R)))
        s = S*th/360 - (pow(xx, 0.5))*y
        if s <= now:
            r = y
        else:
            l = y
    ans.append(l)
new = set()
for i in range(1, len(ans)):
    new.add(ans[i])
    new.add(-ans[i])
print(*sorted(list(new)), sep = "\n")
0