Project Euler 19

Project Euler 19

题目

Counting Sundays

You are given the following information, but you may prefer to do some research for yourself.

  • \(1\) Jan \(1900\) was a Monday.

  • Thirty days has September,
    April, June and November.
    All the rest have thirty-one,
    Saving February alone,
    Which has twenty-eight, rain or shine.
    And on leap years, twenty-nine.

  • A leap year occurs on any year evenly divisible by \(4\), but not on a century unless it is divisible by \(400\).

How many Sundays fell on the first of the month during the twentieth century (\(1\) Jan \(1901\) to \(31\) Dec \(2000\))?

解决方案

可以使用Pythondatetime包的date类解决。

代码

1
2
3
4
5
6
7
8
9
10
from datetime import date

l = 1901
r = 2000
ans = 0
for y in range(l, r + 1):
for m in range(1, 13):
if date(y, m, 1).isoweekday() == 7:
ans += 1
print(ans)
如果觉得我的文章对您有用,请随意打赏。您的支持将鼓励我继续创作!
Ujimatsu Chiya 微信 微信
Ujimatsu Chiya 支付宝 支付宝