結果

問題 No.2352 Sharpened Knife in Fall
ユーザー Nikkuniku029Nikkuniku029
提出日時 2023-06-16 23:03:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 489 ms / 3,000 ms
コード長 423 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 84,456 KB
最終ジャッジ日時 2024-06-24 16:08:12
合計ジャッジ時間 13,033 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,760 KB
testcase_01 AC 36 ms
53,116 KB
testcase_02 AC 37 ms
53,864 KB
testcase_03 AC 38 ms
52,988 KB
testcase_04 AC 473 ms
83,180 KB
testcase_05 AC 36 ms
52,960 KB
testcase_06 AC 485 ms
83,056 KB
testcase_07 AC 275 ms
80,260 KB
testcase_08 AC 479 ms
82,784 KB
testcase_09 AC 484 ms
84,456 KB
testcase_10 AC 484 ms
82,924 KB
testcase_11 AC 489 ms
83,180 KB
testcase_12 AC 480 ms
82,796 KB
testcase_13 AC 472 ms
83,176 KB
testcase_14 AC 263 ms
79,960 KB
testcase_15 AC 461 ms
83,240 KB
testcase_16 AC 89 ms
76,760 KB
testcase_17 AC 73 ms
72,856 KB
testcase_18 AC 214 ms
79,772 KB
testcase_19 AC 389 ms
82,880 KB
testcase_20 AC 198 ms
79,884 KB
testcase_21 AC 192 ms
79,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R,K=map(int,input().split())
ans=[]
from math import acos,sin,pi
def S(x,k):
    alpha = 2*acos((R-x)/R)
    S=(K+1)*(alpha - sin(alpha)) -(2*pi*k)
    return S>=0
for i in range(K//2):
    l=0
    r=R
    for _ in range(100):
        mid=(l+r)/2
        if S(mid,i+1):
            r=mid
        else:
            l=mid
    ans.append(R-l)
    ans.append(-(R-l))
if K%2!=0:
    ans.append(0)
ans.sort()
print(*ans,sep="\n")
0