baekjoon 20260405

This commit is contained in:
songyc macbook 2026-04-05 22:12:06 +09:00
parent bc358fa200
commit 6a75ad4594

View File

@ -0,0 +1,2 @@
N, W, H = map(int, input().split())
print("\n".join(["DA" if int(input()) <= (W**2 + H**2)**0.5 else "NE" for _ in range(N)]))