結果
問題 | No.2352 Sharpened Knife in Fall |
ユーザー | komkompi |
提出日時 | 2023-06-24 17:34:00 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 729 bytes |
コンパイル時間 | 336 ms |
コンパイル使用メモリ | 82,544 KB |
実行使用メモリ | 82,128 KB |
最終ジャッジ日時 | 2024-07-01 20:32:59 |
合計ジャッジ時間 | 4,559 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
53,604 KB |
testcase_01 | AC | 39 ms
53,708 KB |
testcase_02 | AC | 39 ms
54,204 KB |
testcase_03 | AC | 39 ms
53,256 KB |
testcase_04 | WA | - |
testcase_05 | AC | 38 ms
53,288 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
# 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**-7: middle=(high+low)/2 temp_s=integrate(middle)-used if temp_s<s: high=middle else: low=middle ans.append(high) used+=integrate(middle) 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)