結果

問題 No.2352 Sharpened Knife in Fall
ユーザー rlangevinrlangevin
提出日時 2023-06-16 21:42:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 368 ms / 3,000 ms
コード長 514 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 84,908 KB
最終ジャッジ日時 2024-06-24 13:31:26
合計ジャッジ時間 11,406 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,608 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 38 ms
52,736 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 348 ms
84,608 KB
testcase_05 AC 37 ms
52,128 KB
testcase_06 AC 344 ms
84,908 KB
testcase_07 AC 207 ms
79,488 KB
testcase_08 AC 362 ms
84,392 KB
testcase_09 AC 341 ms
84,480 KB
testcase_10 AC 345 ms
84,396 KB
testcase_11 AC 351 ms
84,480 KB
testcase_12 AC 368 ms
84,480 KB
testcase_13 AC 349 ms
84,688 KB
testcase_14 AC 196 ms
79,488 KB
testcase_15 AC 365 ms
84,416 KB
testcase_16 AC 82 ms
76,416 KB
testcase_17 AC 70 ms
70,784 KB
testcase_18 AC 167 ms
78,976 KB
testcase_19 AC 285 ms
82,816 KB
testcase_20 AC 150 ms
78,156 KB
testcase_21 AC 149 ms
77,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import *

def calc(S):
    yes = 1
    no = -1
    for _ in range(60):
        mid = (yes + no)/2
        alpha = asin(mid)
        s = pi/2 - alpha - sin(2 * alpha)/2
        if s <= S:
            yes = mid
        else:
            no = mid
    return yes

R, K = map(int, input().split())
P = []
for i in range(K//2):
    P.append(calc(pi/(K + 1) * (i + 1)))
ans = []
if K % 2:
    ans.append(0)
for p in P:
    ans.append(p * R)
    ans.append(-p * R)
    
ans.sort()
for a in ans:
    print(a)
    
0