728x90
반응형
단순 수학 문제이다.
N, W, H = map(int, input().split())
d = (W**2 + H**2)**0.5
for _ in range(N):
n = int(input())
print("DA" if n <= d else "NE")
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 3460번 이진수(python) (0) | 2021.02.12 |
---|---|
백준 알고리즘 3058번 짝수를 찾아라(python) (0) | 2021.02.12 |
백준 알고리즘 3029번 경고(python) (0) | 2021.02.12 |
백준 알고리즘 3028번 창영마을(python) (0) | 2021.02.12 |
백준 알고리즘 2991번 사나운 개(python) (0) | 2021.02.12 |