728x90
#B10886
n = int(input())
cnt = 0
for i in range(n):
v = int(input())
if v == 1 :
cnt+=1
else:
cnt-=1
if cnt > 0:
print("Junhee is cute!")
else:
print("Junhee is not cute!")
728x90
'Programming Practice > Python' 카테고리의 다른 글
백준 9610 파이썬 사분면 (0) | 2023.09.05 |
---|---|
백준 1934 파이썬 최소공배수 (0) | 2023.09.04 |
백준 10988 파이썬 팰린드롬인지 확인하기 (0) | 2023.09.04 |
백준 10162 파이썬 전자레인지 (0) | 2023.09.04 |
백준 11653 파이썬 소인수분해 (2) | 2023.09.03 |