This commit is contained in:
2023-07-02 21:13:21 +02:00
parent 19cb7f377d
commit b8df7029f7

4
sibice.py Normal file
View File

@@ -0,0 +1,4 @@
n, w, h = map(int, input().split())
s = (w**2 + h**2) ** 0.5
for _ in range(n):
print("DA" if s >= int(input()) else "NE")