Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 코로나19
- 우분투
- 편스토랑
- Baekjoon
- 프로그래머스
- PYTHON
- 캐치카페
- 맥북
- Docker
- 백준
- SW Expert Academy
- AI 경진대회
- leetcode
- hackerrank
- dacon
- 금융문자분석경진대회
- 자연어처리
- ChatGPT
- github
- ubuntu
- 편스토랑 우승상품
- Git
- Real or Not? NLP with Disaster Tweets
- 프로그래머스 파이썬
- gs25
- 더현대서울 맛집
- 데이콘
- Kaggle
- 파이썬
- programmers
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 10886번 : 0 = not cute / 1 = cute (Python) 본문
Programming/코딩 1일 1문제
[BaekJoon] 10886번 : 0 = not cute / 1 = cute (Python)
솜씨좋은장씨 2021. 11. 1. 19:59728x90
반응형

코딩 1일 1문제! 오늘의 문제는 백준의 0 = not cute / 1 = cute 입니다.
10886번: 0 = not cute / 1 = cute
준희는 자기가 팀에서 귀여움을 담당하고 있다고 생각한다. 하지만 연수가 볼 때 그 의견은 뭔가 좀 잘못된 것 같았다. 그렇기에 설문조사를 하여 준희가 귀여운지 아닌지 알아보기로 했다.
www.acmicpc.net
👨🏻💻 코드 ( Solution )
from collections import Counter
def cute_or_not(opinions):
cnt = Counter(opinions).most_common(1)
if cnt[0][0] == 0:
answer = 'Junhee is not cute!'
elif cnt[0][0] == 1:
answer = 'Junhee is cute!'
return answer
if __name__ == "__main__":
opinions = []
for _ in range(int(input())):
opinion = int(input())
opinions.append(opinion)
print(cute_or_not(opinions))
GitHub - SOMJANG/CODINGTEST_PRACTICE: 1일 1문제 since 2020.02.07
1일 1문제 since 2020.02.07. Contribute to SOMJANG/CODINGTEST_PRACTICE development by creating an account on GitHub.
github.com
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 10936번 : BASE64 디코딩 (Python) (0) | 2021.11.05 |
---|---|
[BaekJoon] 10935번 : BASE64 인코딩 (Python) (0) | 2021.11.02 |
[BaekJoon] A+B - 3 (Python) (0) | 2021.10.29 |
[BaekJoon] 5893번 : 17배 (Python) (0) | 2021.10.26 |
[BaekJoon] 10156번 : 과자 (Python) (0) | 2021.10.25 |