結果

問題 No.2352 Sharpened Knife in Fall
ユーザー flygonflygon
提出日時 2023-06-16 23:30:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 656 ms / 3,000 ms
コード長 549 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 102,624 KB
最終ジャッジ日時 2024-06-24 16:47:45
合計ジャッジ時間 14,726 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,608 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 35 ms
52,608 KB
testcase_03 AC 33 ms
52,096 KB
testcase_04 AC 646 ms
101,080 KB
testcase_05 AC 34 ms
52,096 KB
testcase_06 AC 651 ms
101,064 KB
testcase_07 AC 357 ms
88,448 KB
testcase_08 AC 647 ms
101,292 KB
testcase_09 AC 648 ms
102,624 KB
testcase_10 AC 656 ms
101,160 KB
testcase_11 AC 655 ms
101,248 KB
testcase_12 AC 651 ms
101,068 KB
testcase_13 AC 648 ms
101,012 KB
testcase_14 AC 338 ms
86,492 KB
testcase_15 AC 622 ms
102,080 KB
testcase_16 AC 96 ms
77,184 KB
testcase_17 AC 80 ms
77,016 KB
testcase_18 AC 278 ms
84,692 KB
testcase_19 AC 530 ms
96,996 KB
testcase_20 AC 246 ms
81,700 KB
testcase_21 AC 239 ms
83,456 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)//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(r)
if K % 2 == 1:
    ans.append(0)
new = set()
for i in range(1, len(ans)):
    new.add(ans[i])
    new.add(-ans[i])
print(*sorted(list(new)), sep = "\n")
0