結果

問題 No.2352 Sharpened Knife in Fall
ユーザー komkompikomkompi
提出日時 2023-06-24 17:44:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 317 ms / 3,000 ms
コード長 713 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 81,620 KB
最終ジャッジ日時 2024-07-01 20:43:07
合計ジャッジ時間 11,061 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,516 KB
testcase_01 AC 37 ms
52,992 KB
testcase_02 AC 37 ms
52,980 KB
testcase_03 AC 37 ms
52,724 KB
testcase_04 AC 248 ms
80,072 KB
testcase_05 AC 38 ms
53,544 KB
testcase_06 AC 317 ms
80,060 KB
testcase_07 AC 187 ms
77,820 KB
testcase_08 AC 311 ms
80,128 KB
testcase_09 AC 317 ms
80,916 KB
testcase_10 AC 312 ms
79,648 KB
testcase_11 AC 312 ms
79,400 KB
testcase_12 AC 313 ms
79,700 KB
testcase_13 AC 311 ms
79,264 KB
testcase_14 AC 174 ms
77,812 KB
testcase_15 AC 300 ms
81,620 KB
testcase_16 AC 75 ms
73,712 KB
testcase_17 AC 68 ms
71,204 KB
testcase_18 AC 154 ms
77,848 KB
testcase_19 AC 262 ms
79,984 KB
testcase_20 AC 143 ms
76,976 KB
testcase_21 AC 140 ms
77,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
import math

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

S=R**2*math.pi

s=S/(K+1)

def integrate(x):
    #x=rsintheta
    theta=math.acos(x/R)
    
    sense=R**2*theta
    three=1/2*R**2*math.sin(2*theta)
    
    area=sense-three
    return area
    

ans=[]
used=0
high=R
for i in range(K//2):
    low=0
    
    while high-low>10**-8:
        middle=(high+low)/2
        
        temp_s=integrate(middle)-used
        if temp_s<s:
            high=middle
        else:
            low=middle
        
        
    ans.append(middle)
    used+=integrate(middle)-used
    
rev=[-a for a in ans]

if K%2==0:
    ans=rev+ans
else:
    ans=rev+[0]+ans

ans.sort()

for a in ans:
    print(a)

0