반응형
https://www.acmicpc.net/problem/10886
# @Author YoungMinKim
# baekjoon
N=int(input())
vote = []
for _ in range(N):
x=int(input())
vote.append(x)
if vote.count(0)>vote.count(1):
print("Junhee is not cute!")
else:
print("Junhee is cute!")
반응형
'백준 문제풀이' 카테고리의 다른 글
baekjoon - python - 10828 (0) | 2020.09.05 |
---|---|
baekjoon - python - 1427 (0) | 2020.09.04 |
baekjoon - python - 10872 (0) | 2020.09.02 |
baekjoon - python - 10871 (0) | 2020.09.02 |
baekjoon - python - 10870 (0) | 2020.09.02 |
댓글