보안을 그리다, 훈이

[Baekjoon/Python3] 10886번 0 = not cute / 1 = cute 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 10886번 0 = not cute / 1 = cute

HooNeee 2020. 12. 6. 18:32

[Baekjoon/Python3] 10886번 0 = not cute / 1 = cute

 

www.acmicpc.net/problem/10886

 

10886번: 0 = not cute / 1 = cute

준희는 자기가 팀에서 귀여움을 담당하고 있다고 생각한다. 하지만 연수가 볼 때 그 의견은 뭔가 좀 잘못된 것 같았다. 그렇기에 설문조사를 하여 준희가 귀여운지 아닌지 알아보기로 했다.

www.acmicpc.net

 

n = int(input())
nums = [int(input()) for i in range(n)]
if nums.count(0) > nums.count(1):
    print('Junhee is not cute!')
else:
    print('Junhee is cute!')
Comments