From 6a75ad459451f5de0d9610c1ce42696f5c033c9e Mon Sep 17 00:00:00 2001 From: songyc macbook Date: Sun, 5 Apr 2026 22:12:06 +0900 Subject: [PATCH] baekjoon 20260405 --- code_study/Baekjoon/python/3034.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 code_study/Baekjoon/python/3034.py diff --git a/code_study/Baekjoon/python/3034.py b/code_study/Baekjoon/python/3034.py new file mode 100644 index 0000000..d00434e --- /dev/null +++ b/code_study/Baekjoon/python/3034.py @@ -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)])) \ No newline at end of file