题目描述:
小明正在整理一批历史文献。这些历史文献中出现了很多日期。
小明知道这些日期都在1960年1月1日至2059年12月31日。
令小明头疼的是,这些日期采用的格式非常不统一,有采用年/月/日的,有采用月/日/年的,还有采用日/月/年的。
更加麻烦的是,年份也都省略了前两位,使得文献上的一个日期,存在很多可能的日期与其对应。
比如02/03/04,可能是2002年03月04日、2004年02月03日或2004年03月02日。
给出一个文献上的日期,你能帮助小明判断有哪些可能的日期对其对应吗?
输入格式
一个日期,格式是”AA/BB/CC”。
即每个’/’隔开的部分由两个 0-9 之间的数字(不一定相同)组成。
输出格式
输出若干个不相同的日期,每个日期一行,格式是”yyyy-MM-dd”。
多个日期按从早到晚排列。
数据范围
0≤A,B,C≤9
a, b, c = input().split('/')
# 有年/月/日,月/日/年,日/月/年共三种输入情况,lt意为将这三种情况重新排成年/月/日,然后判断
lt = [(a, b, c), (c, b, a), (c, a, b)]
error = [] # 用来存储错误的
for i in lt: # 判断正误
# i[1]是月份,大于0小于13,i[2]为日,大于0
if int(i[1]) > 12 or int(i[1]) == 0 or int(i[2]) == 0:
error.append(i)
else:
if int(i[1]) == 2: # 二月份独特,单独处理
if int(i[0]) % 4 == 0: # 因为能被100整除的年份只有2000,且知是闰年,所以直接按普通闰年判断
if int(i[2]) > 29:
error.append(i)
elif int(i[2]) > 28:
error.append(i)
elif int(i[1]) in [1, 3, 5, 7, 8, 10, 12]: # 大月31天
if int(i[2]) > 31:
error.append(i)
else: # 小月30天
if int(i[2]) > 30:
error.append(i)
lt = list(set(lt)) # 去重
lt.sort() # 排序
for i in lt:
if i not in error:
if int(i[0]) < 60:
print('20%s-%s-%s' % i)
else:
print('19%s-%s-%s' % i)