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
- programmers
- 편스토랑
- Kaggle
- 프로그래머스 파이썬
- leetcode
- ubuntu
- github
- 더현대서울 맛집
- 백준
- 파이썬
- ChatGPT
- 캐치카페
- 금융문자분석경진대회
- dacon
- 프로그래머스
- 우분투
- 편스토랑 우승상품
- gs25
- 자연어처리
- Docker
- SW Expert Academy
- Real or Not? NLP with Disaster Tweets
- 코로나19
- Git
- 데이콘
- hackerrank
- AI 경진대회
- PYTHON
- 맥북
- Baekjoon
Archives
- Today
- Total
목록
반응형
BaekJoon 25814 Heavy Numbers (1)
반응형
솜씨좋은장씨
[BaekJoon] 25814번 : Heavy Numbers (Python)
코딩 1일 1문제! 오늘의 문제는 백준의 Heavy Numbers 입니다. 25814번: Heavy Numbers There is only one input line; it contains two integers separated by exactly one space (blank). Assume each integer is between 1 and 1,000,000 (inclusive). www.acmicpc.net 👨🏻💻 코드 ( Solution ) def calculate_weight(num): weight = len(str(num)) * sum(list(map(int, list(str(num))))) return weight def heavy_numbers(num1, num2): answer = ..
Programming/코딩 1일 1문제
2022. 12. 9. 12:54
반응형