uva12019 Doom’s Day Algorithm

uva12019

uDebug12019

给定2011年的月和日,求该日期是星期几。C++就直接用基姆拉尔森计算公式计算了,python就偷懒了,直接datetime+strftime输出了。

python版本AC代码

from time import strftime
from datetime import datetime

yy = 2011
testcase = int(input())
while testcase > 0:
	testcase -= 1
	mm,dd = map(int,input().split())
	weekday=datetime(yy,mm,dd).strftime("%A")
	print(weekday)

C++版本AC代码

#include <iostream>
#include<cstdio>
using namespace std;

//#define ZANGFONG
char week[7][20] = {"Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"};

int main()
{
    #ifdef ZANGFONG
    freopen("in.txt","r",stdin);
    freopen("out.txt","w",stdout);
    #endif // ZANGFONG
    int testcase;
    int d,m,y,yy,W;
    scanf("%d\n",&testcase);
    yy = 2011;
    while(testcase--)
    {
        scanf("%d%d\n",&m,&d);
        if(m < 3)
        {
            y = yy-1;
            m += 12;
        }
        else y = yy;
        W= (d+2*m+3*(m+1)/5+y+y/4-y/100+y/400+1)%7; //C++计算公式
        printf("%s\n",week[W]);

    }
    return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值