https://www.acmicpc.net/problem/10886
풀이
단순한 구현이다.
# 10886번 0 = not cute / 1 = cute
t = int(input())
yes, no = 0, 0
for _ in range(t):
n = input()
if n == '1': yes += 1
else: no += 1
if yes > no: print("Junhee is cute!")
else: print("Junhee is not cute!")
출력결과
'백준 > 구현' 카테고리의 다른 글
[백준] 11650번 좌표 정렬하기 - 파이썬 (0) | 2022.02.23 |
---|---|
[백준] 10817번 세 수 - 파이썬 (0) | 2022.02.22 |
[백준][Python] 10699번 오늘 날짜 - 코팩 (0) | 2022.02.22 |
[백준][Python] 1003번 피보나치 함수 - 코팩 (0) | 2022.02.22 |
[백준] 1316번 그룹 단어 체커 - 파이썬 (0) | 2022.02.22 |