結果

問題 No.2352 Sharpened Knife in Fall
ユーザー flygonflygon
提出日時 2023-06-16 21:50:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 537 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 102,616 KB
最終ジャッジ日時 2024-06-24 13:48:45
合計ジャッジ時間 18,663 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,168 KB
testcase_01 AC 37 ms
52,648 KB
testcase_02 AC 38 ms
53,256 KB
testcase_03 AC 39 ms
53,624 KB
testcase_04 AC 1,000 ms
99,100 KB
testcase_05 AC 38 ms
54,020 KB
testcase_06 AC 1,019 ms
98,712 KB
testcase_07 AC 540 ms
87,200 KB
testcase_08 AC 1,025 ms
98,860 KB
testcase_09 AC 1,092 ms
100,560 KB
testcase_10 AC 1,013 ms
98,856 KB
testcase_11 AC 1,021 ms
99,000 KB
testcase_12 AC 1,016 ms
98,896 KB
testcase_13 AC 1,010 ms
98,976 KB
testcase_14 AC 514 ms
88,796 KB
testcase_15 AC 962 ms
102,616 KB
testcase_16 AC 112 ms
77,500 KB
testcase_17 AC 83 ms
76,752 KB
testcase_18 AC 402 ms
83,684 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import acos, degrees
pi = 3.14159265358979
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 = ans[-1]
    for _ in range(200):
        y = (r+l)/2
        xx = R*R - y*y
        th = degrees(acos((-xx+y*y)/(R*R)))
        s = S*th/360 - (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