再这样试试呢
再这样试试呢
全部文章
分类
归档
标签
去牛客网
登录
/
注册
再这样试试呢的博客
全部文章
(共2篇)
题解 | 回文日期
import sys def is_round(s): year =int( s) m =int( s[-1]+s[-2]) d = int(s[1]+s[0]) gap = bool ((year % 4==0 and year % 100!=0) or year ...
2025-11-20
0
25
题解 | 计算一年中的第几天python3
import sys for line in sys.stdin: if line.strip(): y, m, d = map(int, line.split()) leap = (y % 4 == 0 and y % 100 != 0) or (y % ...
2025-11-18
1
21