Run ID:123650
提交时间:2025-07-08 21:14:50
def is_leap_year(year): if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0): return True else: return False