일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 더현대서울 맛집
- ubuntu
- 파이썬
- dacon
- AI 경진대회
- ChatGPT
- 데이콘
- programmers
- 맥북
- Real or Not? NLP with Disaster Tweets
- 자연어처리
- PYTHON
- 우분투
- 백준
- Baekjoon
- 캐치카페
- Docker
- SW Expert Academy
- 코로나19
- 프로그래머스
- gs25
- 편스토랑
- github
- hackerrank
- 금융문자분석경진대회
- 편스토랑 우승상품
- 프로그래머스 파이썬
- Git
- Kaggle
- leetcode
- Today
- Total
목록
반응형
BaekJoon Python (6)
솜씨좋은장씨
코딩 1일 1문제! 오늘의 문재는 백준의 3 つの整数 (Three Integers) 입니다. 18408번: 3 つの整数 (Three Integers) 3 つの整数 A, B, C が与えられる.A, B, C はそれぞれ 1 または 2 である.1 と 2 のうち,どちらが多くあるか. www.acmicpc.net 🧑🏻💻 코드 ( Solution ) from collections import Counter def three_integers(integer_list): cnt = Counter(integer_list).most_common() return cnt[0][0] if __name__ == "__main__": integer_list = list(map(int, input().split())) print(thr..
코딩 1일 1문제! 오늘의 문제는 백준의 HOMWRK 입니다. 18398번: HOMWRK In one of the beautiful cities of Afghanistan two sisters are going to program a simple game to help them solve their mathematics homework. Their homework asks them to calculate the sum and multiplication of two numbers. Your task is to help them to build www.acmicpc.net 🧑🏻💻 코드 ( Solution ) def homwrk(A, B): return f"{A+B} {A*B}" if __name__ == ..
코딩 1일 1문제! 오늘의 문제는 백준의 Divide the Cash 입니다. 25858번: Divide the Cash The UCF Programming Team coaches schedule practices regularly in fall and spring (by the way, all UCF students are welcome to the practices). During summer, the majority of the team members are gone but the coaches know how to make sure the students don’ www.acmicpc.net 👨🏻💻 코드 ( Solution ) def divide_the_cash(team_member_number..
코딩 1일 1문제! 오늘의 문제는 백준의 카카오뷰 큐레이팅 효용성 분석 입니다. 24544번: 카카오뷰 큐레이팅 효용성 분석 카카오뷰는 사용자가 관심을 가질만한 주제를 분석하고, 이를 바탕으로 큐레이팅을 진행하는 카카오톡의 서비스이다. '발견'을 통해 흥미로운 주제의 콘텐츠를 탐색하고, 마음에 드는 콘텐츠는 www.acmicpc.net 👨🏻💻 문제 풀이 카카오뷰 각 게시물의 흥미도와 등록 여부가 주어지면 모든 게시물 흥미도의 합과 등록하지 않은 게시물의 흥미도 합을 구하는 문제입니다. 아주 단순한 구현 문제입니다. 반복문에서 zip 을 활용하여 각 게시물의 흥미도와 등록 여부를 동시에 꺼내와서 total_interest 에는 모든 흥미도 값을 더하고 not_register_interest 에는 등록하지..
코딩 1일 1문제! 오늘의 문제는 백준의 사탕 선생 고창영 입니다. 2547번: 사탕 선생 고창영 첫째 줄에 테스트 케이스의 개수 T가 주어진다. 각 테스트 케이스는 빈 줄로 구분되어 있고, 다음과 같이 구성되어 있다. 테스트 케이스의 첫째 줄에 학생의 수 N이 주어진다. 다음 N개의 줄에는 www.acmicpc.net 👨🏻💻 코드 ( Solution ) def candy_teacher_changyounggo(candy_list): answer = "NO" total_candy = sum(candy_list) if total_candy % len(candy_list) == 0: answer = "YES" return answer if __name__ == "__main__": case_num = int..
코딩 1일 1문제! 오늘의 문제는 백준의 치킨 쿠폰 입니다. 1673번: 치킨 쿠폰 강민이는 치킨 한 마리를 주문할 수 있는 치킨 쿠폰을 n장 가지고 있다. 이 치킨집에서는 치킨을 한 마리 주문할 때마다 도장을 하나씩 찍어 주는데, 도장을 k개 모으면 치킨 쿠폰 한 장으로 교환 www.acmicpc.net 👨🏻💻 코드 ( Solution ) def change_stamp_to_coupon(stamp, k): coupon = stamp // k stamp = stamp % k return coupon, stamp def chicken_coupon(n, k): chicken_num, stamp = n, n while True: if stamp < k: break coupon, stamp = change_s..