baekjoon - python - 1924
https://www.acmicpc.net/problem/1924 1924번: 2007년 첫째 줄에 빈 칸을 사이에 두고 x(1≤x≤12)와 y(1≤y≤31)이 주어진다. 참고로 2007년에는 1, 3, 5, 7, 8, 10, 12월은 31일까지, 4, 6, 9, 11월은 30일까지, 2월은 28일까지 있다. www.acmicpc.net # @Author YoungMinKim # baekjoon import datetime m,d = map(int,input().split()) now = datetime.datetime(2007,m,d) dic={0:"MON",1:"TUE",2:"WED",3: "THU",4: "FRI",5: "SAT",6:"SUN"} for i in dic.keys(): if now.w..
2020. 8. 21.