티스토리 뷰
삼항연산자를 사용해서 더 깔끔하게 코딩해봤다.
print('Junhee is '+'not '*(m>0)+'cute!')
누가 이렇게 해놨던데 개쩐다고 생각했다 ㅋㅋㅋㅋ숏코딩오짐
N = int(input())
cute = not_cute = 0
for i in range(N):
if int(input()) == 1:
cute += 1
else:
not_cute += 1
print("Junhee is cute!" if cute > not_cute else "Junhee is not cute!")
eval 쓴 예도 봤는데 뭔지 잘몰라서 그냥 넘어감 😔(www.acmicpc.net/source/13442756)
'Algorithm > noj.am' 카테고리의 다른 글
[Python] 백준 10984번 - 내 학점을 구해줘 (0) | 2021.01.02 |
---|---|
[Python] 소수점 n자리까지 표시하기 (0) | 2021.01.02 |
[Python] 백준 1271번 - 엄청난 부자2 (0) | 2021.01.01 |
[Python] 여러 변수에 같은 값 할당하기 (0) | 2021.01.01 |
[Python] 백준 1065번 - 한수 (0) | 2020.12.31 |