[Baekjoon]1297テレビサイズ


1279)TVサイズ
https://www.acmicpc.net/problem/1297
ピタゴラスの定理:c² = a² + b²
平方和の根を求めます
平方aを求めます
  • mathモジュール:mathを使用します.pow(a,n)
  • 使用
  • :a n
  • ルート√a
  • を探しています
  • mathモジュール:mathを使用します.sqrt(a)
  • :a(1/2)or a**0.5
  • を使用
    import math as m
    
    d, h, w = map(int, input().split())
    q = m.sqrt(d**2/(h**2+w**2))
    #q = d / ((h ** 2 + w ** 2) ** 0.5)
    print(int(h * q), int(w * q))