結果

問題 No.2352 Sharpened Knife in Fall
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2023-03-26 11:53:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,961 ms / 3,000 ms
コード長 699 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-09-19 09:45:45
合計ジャッジ時間 24,514 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 1,827 ms
12,928 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 1,869 ms
12,672 KB
testcase_07 AC 978 ms
11,776 KB
testcase_08 AC 1,854 ms
12,800 KB
testcase_09 AC 1,881 ms
12,800 KB
testcase_10 AC 1,922 ms
12,928 KB
testcase_11 AC 1,903 ms
12,928 KB
testcase_12 AC 1,951 ms
12,800 KB
testcase_13 AC 1,961 ms
12,928 KB
testcase_14 AC 908 ms
12,032 KB
testcase_15 AC 1,829 ms
12,800 KB
testcase_16 AC 124 ms
11,008 KB
testcase_17 AC 68 ms
10,880 KB
testcase_18 AC 706 ms
11,648 KB
testcase_19 AC 1,465 ms
12,544 KB
testcase_20 AC 588 ms
11,520 KB
testcase_21 AC 584 ms
11,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def area(center, r):
    theta = math.acos(center / r)
    sector = r * r * theta
    triangle = center * ((r ** 2 - center ** 2) ** 0.5)
    return sector - triangle

R, K = map(int, input().split())
p = math.acos(-1)
dr = float(R)
S = dr * dr * p
ans = []

for i in range(K // 2):
    portion_s = S * (i + 1) / (K + 1)

    ok = 0
    ng = dr
    for j in range(50):
        center = (ok + ng) / 2
        if area(center, dr) >= portion_s:
            ok = center
        else:
            ng = center
    ans.append(ok)

for i in range(len(ans)):
    print('{:.13g}'.format(-ans[i]))
if K % 2 == 1:
    print(0)
for i in reversed(range(len(ans))):
    print('{:.13g}'.format(ans[i]))
0