ZOJ 3876 May Day Holiday【根据年份和这一年的天数算星期几】

May Day Holiday

Time Limit: 2 Seconds       Memory Limit: 65536 KB

As a university advocating self-learning and work-rest balance, Marjar University has so many days of rest, including holidays and weekends. Each weekend, which consists of Saturday and Sunday, is a rest time in the Marjar University.

The May Day, also known as International Workers' Day or International Labour Day, falls on May 1st. In Marjar University, the May Day holiday is a five-day vacation from May 1st to May 5th. Due to Saturday or Sunday may be adjacent to the May Day holiday, the continuous vacation may be as long as nine days in reality. For example, the May Day in 2015 is Friday so the continuous vacation is only 5 days (May 1st to May 5th). And the May Day in 2016 is Sunday so the continuous vacation is 6 days (April 30th to May 5th). In 2017, the May Day is Monday so the vacation is 9 days (April 29th to May 7th). How excited!

Edward, the headmaster of Marjar University, is very curious how long is the continuous vacation containing May Day in different years. Can you help him?

Input

There are multiple test cases. The first line of input contains an integer T indicating the number of test cases. For each test case, there is an integer y (1928 <= y <= 9999) in one line, indicating the year of Edward's query.

Output

For each case, print the number of days of the continuous vacation in that year.

Sample Input


3
2015
2016
2017
Output


5
6
9


题目大意:给你年份,让你计算这一年的五一假期能放多少天假~

解题思路:

队长从网上摸到的一份模板输入年份和这一天是这一年的多少天,就能输出这一天是星期几,表示队长真强大,什么模板都有~~~~~~~~~

有了5.1这一天是星期几,难道之后的还算是难题了么~

AC代码:

#include<stdio.h>
#include<string.h>
using namespace std;
int cal(int y,int k)
{
    int t=(y-1)*365+(y-1)/4-(y-1)/100+(y-1)/400+k;
    t%=7;
    if(t!=0)t-=1;
    else  t=6;

    return t;
}
int main()
{
    int t;
    while(~scanf("%d",&t))
    {
        while(t--)
        {
            int n;
            scanf("%d",&n);
            if(n%4==0&&n%100!=0||n%400==0)
            {
                int t=cal(n,123);
                //printf("%d\n",t);
                if(t==0||t==2)printf("6\n");
                else if(t==1||t==9)printf("9\n");
                else printf("5\n");
            }
            else
            {
                int t=cal(n,122);
                //printf("%d\n",t);
                if(t==0||t==2)printf("6\n");
                else if(t==1||t==9)printf("9\n");
                else printf("5\n");
            }
        }
    }
}











1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值