题目描述
2020 年春节期间,有一个特殊的日期引起了大家的注意:2020年2月2日。因为如果将这个日期按“
![img](” 的格式写成一https://img-mid.csdnimg.cn/release/static/image/mid/ask/130115143666156.png "#left")
个8 位数是20200202,
恰好是一个回文数。我们称这样的日期是回文日期。
有人表示20200202 是“千年一遇” 的特殊日子。对此小明很不认同,因为不到2年之后就是下一个回文日期:20211202 即2021年12月2日。
也有人表示20200202 并不仅仅是一个回文日期,还是一个ABABBABA型的回文日期。对此小明也不认同,因为大约100 年后就能遇到下一个ABABBABA 型的回文日期:21211212 即2121 年12 月12 日。算不上“千年一遇”,顶多算“千年两遇”。
给定一个8 位数的日期,请你计算该日期之后下一个回文日期和下一个ABABBABA型的回文日期各是哪一天。
输入格式
输入包含一个八位整数N,表示日期。
输出格式
输出两行,每行1 个八位数。第一行表示下一个回文日期,第二行表示下
一个ABABBABA 型的回文日期。
样例输入
20200202
样例输出
20211202
21211212
我的代码:
N=int(input())
N=str(N)
year=N[0:4]
year0=int(year)
years=[]
years2=[]
datas=year0
data=N
while len(years)+len(years2)<2 :
if datas % 4 == 0 and datas % 100 != 0 or datas % 400==0:
a=29
else:
a=28
days = ['31', f'{a}', '31', '30', '31', '30', '31', '31', '30', '31', '30', '31']
for month in range(1,13):
months=str(month).rjust(2,'0')
for day in range(1,int(days[month-1])+1):
day1=str(day).rjust(2,'0')
data=str(year0)+months+day1
datas = year0
if data==data[::-1] and len(years)==0 and data!=N:
years.append(data)
elif data[0]==data[2] and data[1]==data[3] and data==data[::-1] and len(years2)==0 and data!=N:
years2.append(data)
year0+=1
print(int(''.join(years)))
print(int(''.join(years2)))
我的运行结果:
20200202
20211202
21211212
提交结果