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
- 맥북
- PYTHON
- hackerrank
- 캐치카페
- Git
- Baekjoon
- dacon
- 프로그래머스
- 우분투
- AI 경진대회
- 금융문자분석경진대회
- 자연어처리
- 데이콘
- 프로그래머스 파이썬
- Docker
- 코로나19
- 편스토랑
- leetcode
- Kaggle
- 더현대서울 맛집
- gs25
- 파이썬
- github
- ChatGPT
- Real or Not? NLP with Disaster Tweets
- ubuntu
- programmers
- 편스토랑 우승상품
- 백준
- SW Expert Academy
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 16199번 : 나이 계산하기 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 나이 계산하기 입니다.
👨🏻💻 코드 ( Solution )
from datetime import datetime
def american_age(birthday, standard):
if standard.month - birthday.month > 0:
age = standard.year - birthday.year
elif standard.month == birthday.month:
if standard.day - birthday.day >= 0:
age = standard.year - birthday.year
else:
age = standard.year - birthday.year - 1
else:
age = standard.year - birthday.year - 1
return age
def korean_age(birthday, standard):
age = standard.year - birthday.year + 1
return age
def year_age(birthday, standard):
age = standard.year - birthday.year
return age
def three_ages_used_in_korea(birthday, standard):
birth_year, birth_month, birth_day = map(int, birthday.split())
standard_year, standard_month, standard_day = map(int, standard.split())
birthday = datetime(year=birth_year, month=birth_month, day=birth_day)
standard = datetime(year=standard_year, month=standard_month, day=standard_day)
age_1 = american_age(birthday, standard)
age_2 = korean_age(birthday, standard)
age_3 = year_age(birthday, standard)
return age_1, age_2, age_3
if __name__ == "__main__":
birthday = input()
standard = input()
age_1, age_2, age_3 = three_ages_used_in_korea(birthday, standard)
print(age_1)
print(age_2)
print(age_3)
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 1235번 : 학생 번호 (Python) (0) | 2022.05.07 |
---|---|
[BaekJoon] 14918번 : 더하기 (Python) (0) | 2022.05.06 |
[BaekJoon] 1308번 : D-Day (Python) (0) | 2022.05.04 |
[BaekJoon] 2738번 : 행렬 덧셈 (Python) (0) | 2022.05.03 |
[BaekJoon] 2730번 : 오늘은 OS 숙제 제출일 (Python) (0) | 2022.05.02 |
Comments