본문 바로가기
python-algorithm

백준 3183 Dates

by 무적김두칠 2022. 1. 19.

1
2
3
4
5
6
7
8
import datetime
while 1:
    d,m,y=map(int,input().split())
    if d==0 and m==0 and y==0 :break
    try:
        datetime.date(y,m,d)
        print("Valid")
    except : print("Invalid")
cs
반응형

'python-algorithm' 카테고리의 다른 글

백준 2902 KMP는 왜 KMP일까?  (0) 2022.01.19
백준 4597 패리티  (0) 2022.01.19
백준 2948 2009년  (0) 2022.01.19
백준 없는 숫자 더하기  (0) 2022.01.16
백준 16199 나이 계산하기  (0) 2022.01.14

댓글