結果

問題 No.2352 Sharpened Knife in Fall
ユーザー Ricky_ponRicky_pon
提出日時 2023-06-16 21:40:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 318 ms / 3,000 ms
コード長 626 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 83,712 KB
最終ジャッジ日時 2024-06-24 13:27:45
合計ジャッジ時間 10,908 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,740 KB
testcase_01 AC 37 ms
53,404 KB
testcase_02 AC 36 ms
53,716 KB
testcase_03 AC 38 ms
52,220 KB
testcase_04 AC 309 ms
83,216 KB
testcase_05 AC 38 ms
52,432 KB
testcase_06 AC 304 ms
83,476 KB
testcase_07 AC 185 ms
79,916 KB
testcase_08 AC 308 ms
83,712 KB
testcase_09 AC 306 ms
82,952 KB
testcase_10 AC 305 ms
83,584 KB
testcase_11 AC 306 ms
83,708 KB
testcase_12 AC 311 ms
83,600 KB
testcase_13 AC 318 ms
83,328 KB
testcase_14 AC 177 ms
79,872 KB
testcase_15 AC 290 ms
82,696 KB
testcase_16 AC 66 ms
70,784 KB
testcase_17 AC 60 ms
67,328 KB
testcase_18 AC 149 ms
79,616 KB
testcase_19 AC 250 ms
81,972 KB
testcase_20 AC 135 ms
78,624 KB
testcase_21 AC 131 ms
79,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline


def main():
    R, K = map(int, input().split())
    from math import pi, sin, cos

    ans = []
    if K % 2 == 1:
        ans.append(0)
    for t in range(1, K // 2 + 1):
        goal = 2 * pi / (K + 1) * t
        low = 0
        high = goal + 1
        for _ in range(100):
            mid = (high + low) / 2
            if mid - sin(mid) > goal:
                high = mid
            else:
                low = mid

        tmp = R * cos(low / 2)
        ans.append(tmp)
        ans.append(-tmp)

    ans.sort()
    print(*ans, sep="\n")


if __name__ == "__main__":
    main()
0