반응형
문제
https://www.acmicpc.net/problem/1297
답안
d, h, w = map(int, input().split())
# w > h
temp = d / ((h ** 2 + w ** 2) ** 0.5)
H = int(h * temp)
W = int(w * temp)
print(H, W)
단순한 수학 상식으로 풀 수 있습니다.
반응형
'Programming > 알고리즘' 카테고리의 다른 글
[백준 / Python] 1026번 보물 (0) | 2023.05.12 |
---|---|
[백준 / Python] 1003번 피보나치 함수 (1) | 2023.05.05 |
[백준 / Python] 1780번 종이의 개수 (0) | 2023.03.01 |
[백준 / Python] 10816번 숫자카드 2 (0) | 2023.02.13 |
[백준 / Python] 27277번 장기자랑 (1) | 2023.02.05 |
댓글