반응형
import sys
import math
a,b,c = map(int,sys.stdin.readline().split())
x = math.pow(b,2)+math.pow(c,2)
y = math.pow(a,2)/x
print(int(math.sqrt(y)*b),int(math.sqrt(y)*c))
with 피타고라스 정리
반응형
'백준 문제풀이' 카테고리의 다른 글
baekjoon - python - 6768 (0) | 2020.12.19 |
---|---|
baekjoon - python - 5575 (0) | 2020.12.08 |
baekjoon - python - 2566 (0) | 2020.12.06 |
baekjoon - python - 5597 (0) | 2020.12.06 |
baekjoon - python - 1735 (0) | 2020.11.24 |
댓글