-Code
for _ in range(int(input())):
n, x, y = map(int, input().split())
prob = list(map(int, input().split()))
not_prob = False
not_color = False
if prob[0] == x:
not_prob = True
if prob[n - 1] == y:
not_color = True
if not_prob and not_color:
print("BOTH")
elif not_prob and not not_color:
print("EASY")
elif not not_prob and not_color:
print("HARD")
else:
print("OKAY")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 25527번 Counting Peaks of Infection (0) | 2022.11.15 |
---|---|
[백준/파이썬] 12351번 Hedgemony (Small) (0) | 2022.11.14 |
[백준/파이썬] 16099번 Larger Sport Facility (0) | 2022.11.12 |
[백준/파이썬] 9838번 XMAS (0) | 2022.11.11 |
[백준/파이썬] 21420번 Монетки (0) | 2022.11.10 |