honey_pot

[python] 백준 10886번 본문

문제 풀이

[python] 백준 10886번

_tera_ 2021. 6. 8. 01:32

n = int(input())
res1=res0=0
for _ in range(n):
    a = int(input())
    if a==1:
        res1+=1
    else: res0+=1
if res1 > res0:
    print("Junhee is cute!")
else:print("Junhee is not cute!")

'문제 풀이' 카테고리의 다른 글

[python] 백준 1789번  (0) 2021.06.08
[python] 백준 1934번  (0) 2021.06.08
[python] 백준 10102번  (0) 2021.06.08
[python] 백준 5063번  (0) 2021.06.08
[python] 백준 7567번  (0) 2021.06.08
Comments