← Back to List

21167번: Curve Speed ↗

Solutions

Python 3
121 B | 121 chars
while True:
  try:
    r,s=map(float,input().split())
  except:
    break
  
  print(round(((r*(s+0.16))/0.067)**(1/2)))