문제
Young Mirko threw matches all over the floor of his room.
His mom did not like that and ordered him to put all the matches in a box. Mirko soon noticed that not all of the matches on the floor fit in the box, so he decided to take the matches that don't fit and throw them in the neighbour's garbage, where his mom (hopefully) won't find them.
Help Mirko determine which of the matches fit in the box his mom gave him. A match fits in the box if its entire length can lie on the bottom of the box. Mirko examines the matches one by one.
입력
The first line of input contains an integer (), the number of matches on the floor, and two integers and , the dimensions of the box (, ).
Each of the following lines contains a single integer between and (inclusive), the length of one match.
출력
For each match, in the order they were given in the input, output on a separate line "DA" if the match fits in the box or "NE" if it does not.
예제 입력 1
5 3 4
3
4
5
6
7
예제 출력 1
DA
DA
DA
NE
NE
예제 입력 2
2 12 17
21
20
예제 출력 2
NE
DA
코드를 제출하려면 로그인이 필요합니다.
로그인