프로그래밍_일반/백준
boj 4706
Spadework
2020. 2. 14. 10:38
* Solved 기준 브론즈3 단순 풀이
while True:
a,b = map(float, input().split())
if (a,b)==(0,0): break
print('{:.3f}'.format((1-(b/a)**2)**0.5))
tb = ta*y
tb = ta*(1-v^2/c^2)
(tb/ta)^2 = 1 - v^2/c^2
v^2/c^2 = 1 - (tb/ta)^2 [ R = v/c ]
v^2 = (1-(tb/ta)^2)
v = (1-(ta/tb)^2)^0.5