結果

問題 No.2352 Sharpened Knife in Fall
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-16 21:35:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 375 ms / 3,000 ms
コード長 579 bytes
コンパイル時間 543 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 83,424 KB
最終ジャッジ日時 2024-08-16 21:35:25
合計ジャッジ時間 11,473 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,784 KB
testcase_01 AC 33 ms
53,204 KB
testcase_02 AC 36 ms
53,060 KB
testcase_03 AC 35 ms
53,536 KB
testcase_04 AC 342 ms
82,780 KB
testcase_05 AC 35 ms
53,076 KB
testcase_06 AC 312 ms
83,036 KB
testcase_07 AC 214 ms
80,280 KB
testcase_08 AC 314 ms
82,784 KB
testcase_09 AC 316 ms
83,424 KB
testcase_10 AC 309 ms
82,912 KB
testcase_11 AC 315 ms
83,036 KB
testcase_12 AC 375 ms
82,784 KB
testcase_13 AC 313 ms
83,016 KB
testcase_14 AC 211 ms
80,000 KB
testcase_15 AC 309 ms
83,328 KB
testcase_16 AC 72 ms
74,568 KB
testcase_17 AC 70 ms
72,484 KB
testcase_18 AC 176 ms
80,020 KB
testcase_19 AC 266 ms
82,444 KB
testcase_20 AC 143 ms
79,216 KB
testcase_21 AC 137 ms
79,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

r,k=map(int,input().split())
from math import pi,sin,asin,cos,acos
if k%2:
  a=[0]
  for i in range(1,(k+1)//2):
    u=r
    d=0
    for _ in range(50):
      m=(u+d)/2
      t=asin(m/r)
      if (r*r*pi*(t/(2*pi))+(1/2)*m*r*sin(pi/2-t))*2>=(r*r*pi/(k+1))*i:
        u=m
      else:
        d=m
    a+=[-d,d]
else:
  a=[]
  for i in range(k//2):
    u=r
    d=0
    for _ in range(50):
      m=(u+d)/2
      t=asin(m/r)
      if (r*r*pi*(t/(2*pi))+(1/2)*m*r*sin(pi/2-t))*2>=(r*r*pi/(2*(k+1)))*(2*i+1):
        u=m
      else:
        d=m
    a+=[-d,d]
a.sort()
print(*a,sep="\n")
0