結果

問題 No.2352 Sharpened Knife in Fall
ユーザー FromBooskaFromBooska
提出日時 2023-06-17 11:27:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 465 ms / 3,000 ms
コード長 815 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,996 KB
最終ジャッジ日時 2024-06-25 02:56:57
合計ジャッジ時間 12,551 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 36 ms
52,608 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 443 ms
79,888 KB
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 455 ms
79,996 KB
testcase_07 AC 261 ms
78,208 KB
testcase_08 AC 461 ms
79,968 KB
testcase_09 AC 465 ms
79,652 KB
testcase_10 AC 460 ms
79,988 KB
testcase_11 AC 464 ms
79,868 KB
testcase_12 AC 460 ms
79,700 KB
testcase_13 AC 465 ms
79,616 KB
testcase_14 AC 257 ms
78,592 KB
testcase_15 AC 441 ms
79,732 KB
testcase_16 AC 84 ms
75,024 KB
testcase_17 AC 72 ms
71,168 KB
testcase_18 AC 211 ms
78,464 KB
testcase_19 AC 375 ms
79,212 KB
testcase_20 AC 192 ms
78,080 KB
testcase_21 AC 185 ms
77,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 円の上半分でy座標を求めて、あとはミラーで下半分作る
# Kが奇数ならy=0が含まれる
# 二分探索で求めるか
# あるyで切ったときの上のケーキの面積は
# S = theta*R**2 - y*R*sintheta where theta = arccos(y/R)

R, K = map(int, input().split())

import math

def calc_area(y):
    theta = math.acos(y/R)
    area = theta*(R**2) - y*R*math.sin(theta)
    return area

ans_list = []
if K%2 == 1:
    ans_list.append(0)
for k in range(K//2):
    find = math.pi*(R**2)*((k+1)/(K+1))
    OK = R
    NG = 0
    for i in range(100):
        mid = (OK+NG)/2
        if calc_area(mid) <= find:
            OK = mid
        else:
            NG = mid
    ans_list.append(OK)
    ans_list.append(-OK)
    
ans_list.sort()
#print(ans_list)

for a in ans_list:
    print(a)



0