結果

問題 No.2352 Sharpened Knife in Fall
ユーザー meruuu61779999meruuu61779999
提出日時 2023-06-16 23:30:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,782 ms / 3,000 ms
コード長 510 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-06-24 16:48:14
合計ジャッジ時間 26,615 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 961 ms
13,440 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 1,782 ms
13,312 KB
testcase_07 AC 888 ms
12,160 KB
testcase_08 AC 1,782 ms
13,312 KB
testcase_09 AC 1,738 ms
13,440 KB
testcase_10 AC 1,730 ms
13,312 KB
testcase_11 AC 1,761 ms
13,312 KB
testcase_12 AC 1,751 ms
13,440 KB
testcase_13 AC 1,710 ms
13,312 KB
testcase_14 AC 723 ms
12,032 KB
testcase_15 AC 1,427 ms
13,312 KB
testcase_16 AC 112 ms
11,008 KB
testcase_17 AC 65 ms
11,008 KB
testcase_18 AC 584 ms
11,776 KB
testcase_19 AC 1,461 ms
12,800 KB
testcase_20 AC 511 ms
11,776 KB
testcase_21 AC 537 ms
11,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

R, k = map(int, input().split())
ans = []
pi = math.pi


def judge(m, s):
    A = R * R * math.acos(m / R)
    B = m * math.sqrt(R * R - m * m)
    return A - B >= s


for i in range(1, k // 2 + 1):
    S = pi * R * R / (k + 1) * i
    ok, ng = 0, R
    while ng - ok > 0.000001:
        mid = (ng + ok) / 2
        if judge(mid, S):
            ok = mid
        else:
            ng = mid
    ans.append(ok)
for el in ans:
    print(-el)
if k % 2:
    print(0)
for el in ans[::-1]:
    print(el)
0