結果

問題 No.2352 Sharpened Knife in Fall
ユーザー shogo314shogo314
提出日時 2023-06-17 10:09:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 657 ms / 3,000 ms
コード長 452 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 83,200 KB
最終ジャッジ日時 2024-06-25 01:54:17
合計ジャッジ時間 15,401 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 47 ms
52,480 KB
testcase_02 AC 40 ms
52,736 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 640 ms
82,944 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 654 ms
83,200 KB
testcase_07 AC 367 ms
79,212 KB
testcase_08 AC 648 ms
83,016 KB
testcase_09 AC 653 ms
82,816 KB
testcase_10 AC 657 ms
82,788 KB
testcase_11 AC 656 ms
82,944 KB
testcase_12 AC 655 ms
83,064 KB
testcase_13 AC 650 ms
82,944 KB
testcase_14 AC 346 ms
79,232 KB
testcase_15 AC 620 ms
82,688 KB
testcase_16 AC 102 ms
76,544 KB
testcase_17 AC 88 ms
77,152 KB
testcase_18 AC 282 ms
78,336 KB
testcase_19 AC 524 ms
81,536 KB
testcase_20 AC 250 ms
77,568 KB
testcase_21 AC 244 ms
78,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
R, K = map(int, input().split())
s = math.pi*R**2
ans = []
for i in range(K):
    goal = s*(i+1)/(K+1)
    x = 0
    y = 2*R
    for i in range(100):
        z = (x+y)/2
        theta = math.acos(1-z/R)
        c = math.sqrt(z*(2*R-z))
        t = theta*R**2-(R-z)*c
        # print(f"z={z}, theta={theta}, c={c}, t={t}")
        if t > goal:
            y = z
        else:
            x = z
    ans.append(x-R)
for a in ans:
    print(a)
0