鱼C论坛

 找回密码
 立即注册
12
返回列表 发新帖
楼主: 欧拉计划

题目19:20世纪有多少个星期日是当月的第一天?

[复制链接]
发表于 2022-6-8 16:02:43 | 显示全部楼层
import time as t

start = t.perf_counter()


def leap_year(year):
    if year % 4:
        return 0
    else:
        if year % 100:
            return 1
        elif year % 400:
            return 0
        else:
            return 1


res, sundays = 1, 0
dates, leap_years = [], []
for i in range(1901, 2001):
    is_leap = leap_year(i)
    month_day = [3, 0 + (1 * is_leap), 3, 2, 3, 2, 3, 3, 2, 3, 2, 3]
    count_month = 1
    for month in month_day:
        count_month += 1
        res += month
        if not ((res + 1) % 7):
            sundays += 1
            if count_month < 13:
                date = "%s.%s" % (i, count_month)
                dates.append(date)
            else:
                date = "%s.%s" % (i + 1, 1)
                dates.append(date)

for i in dates:
    print(i)
print(sundays)
print("It costs %f s" % (t.perf_counter() - start))
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-6-8 16:03:46 | 显示全部楼层
import time as t

start = t.perf_counter()


def leap_year(year):
    if year % 4:
        return 0
    else:
        if year % 100:
            return 1
        elif year % 400:
            return 0
        else:
            return 1


res, sundays = 1, 0
dates, leap_years = [], []
for i in range(1901, 2001):
    is_leap = leap_year(i)
    month_day = [3, 0 + (1 * is_leap), 3, 2, 3, 2, 3, 3, 2, 3, 2, 3]
    count_month = 1
    for month in month_day:
        count_month += 1
        res += month
        if not ((res + 1) % 7):
            sundays += 1
            if count_month < 13:
                date = "%s.%s" % (i, count_month)
                dates.append(date)
            else:
                date = "%s.%s" % (i + 1, 1)
                dates.append(date)

for i in dates:
    print(i)
print(sundays)
print("It costs %f s" % (t.perf_counter() - start))
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-8-10 09:54:45 | 显示全部楼层
use chrono::prelude::*;

pub fn run() -> Result<(), Box<dyn std::error::Error>> {
    let mut count = 0;
    let mut day = Utc.ymd(1901, 1, 1);
    while day <= Utc.ymd(2000, 12, 31) {
        if day.weekday() == Weekday::Sun && day.day() == 1 {count += 1;}
        day += chrono::Duration::days(1)
    }
    println!("{count}");
    Ok(())
}
[Project Euler 19]
171
[Task finished in 0ms]
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-17 05:59

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表