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 | 31 |
Tags
- ChatGPT
- 파이썬
- 코로나19
- 우분투
- 자연어처리
- github
- Baekjoon
- Git
- 맥북
- ubuntu
- leetcode
- 프로그래머스 파이썬
- Real or Not? NLP with Disaster Tweets
- 백준
- 캐치카페
- AI 경진대회
- programmers
- dacon
- 프로그래머스
- hackerrank
- SW Expert Academy
- 데이콘
- Kaggle
- 편스토랑 우승상품
- 더현대서울 맛집
- 금융문자분석경진대회
- 편스토랑
- gs25
- Docker
- PYTHON
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 18406번 : 럭키 스트레이트 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 럭키 스트레이트입니다.
Solution
def lucky_straight(score):
state = "READY"
median_idx = len(score) // 2
score1, score2 = score[:median_idx], score[median_idx:]
score1 = sum(list(map(int, str(score1))))
score2 = sum(list(map(int, str(score2))))
if score1 == score2:
state = "LUCKY"
return state
if __name__ == "__main__":
score = input()
print(lucky_straight(score))
Solution 풀이
먼저 입력받은 점수를 가운데인덱스로 나누어줍니다.
나눈 수 두개의 각 자리수의 합이 같을 경우 "LUCKY"를 그렇지않을 경우 "READY"를 출력하도록함
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 13420번 : 사칙연산 (Python) (0) | 2021.07.08 |
---|---|
[BaekJoon] 8595번 : 히든 넘버 (Python) (0) | 2021.07.07 |
[BaekJoon] 14726번 : 신용카드 판별 (Python) (0) | 2021.07.05 |
[BaekJoon] 1225번 : 이상한 곱셈 (Python) (0) | 2021.07.04 |
[BaekJoon] 2153번 : 소수 단어 (Python) (0) | 2021.07.03 |
Comments