[백준] 10886번 : 0=not cut/1=cute - Python(파이썬)

강재원·2022년 9월 30일
0

[코딩테스트] Python

목록 보기
80/200



https://www.acmicpc.net/problem/10886

n=int(input())
c0=0
c1=0
for _ in range(n):
    a=int(input())
    if a==0: c0+=1
    elif a==1: c1+=1
if c0>c1: print("Junhee is not cute!")
else: print("Junhee is cute!")
profile
개념정리 & 문법 정리 & 알고리즘 공부

0개의 댓글