zoukankan      html  css  js  c++  java
  • 2015 浙江省赛 H

    H - May Day Holiday

    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

    #include<map>
    #include<string.h>
    #include<cstdio>
    using namespace std;
    int main()
    {
        int t;
        scanf("%d",&t);
        while(t--)
        {
            int d;
            scanf("%d",&d);
            if(d==2015)
            {
                printf("5
    ");
            }
            else if(d>2015)
            {
                int i;
                int s=0;
                for(i=2016;i<=d;i++)
                {
                    if(i%400==0||(i%4==0&&i%100!=0))
                    {
                        s+=2;
                    }
                    else s++;
                }
                int we=(5+s)%7;
                if(we==0) printf("6
    ");
                else if(we==1) printf("9
    ");
                else if(we==2) printf("6
    ");
                else printf("5
    ");
    
            }
            else if(d<2015)
            {
                int i;
                int s=0;
                for(i=d;i<2015;i++)
                {
                    if(((i+1)%400==0)||((i+1)%4==0&&(i+1)%100!=0))
                    {
                        s+=2;
                    }
                    else s++;
    
                }
    
                int we=(3+s)%7;
                if(we==0) printf("9
    ");
                else if(we==6) printf("6
    ");
                else if(we==1) printf("6
    ");
                else printf("5
    ");
            }
        }
       return 0;
    }
  • 相关阅读:
    Ubuntu升级后apache所有的失败,以解决虚拟文件夹的设置
    UVA315- Network(无向图割点)
    技术新领导人张小龙:一些成功不能复制
    mac在查看jre通路
    ubuntu14.04(64位置) ADB Not Responding
    【SSH三框架】Hibernate基金会七:许多附属业务
    HDU1796-How many integers can you find
    再次递归思想-路劲跨越多个阵列
    基于ORACLE建表和循环回路来创建数据库存储过程SQL语句来实现
    Android4.3 蓝牙BLE初步
  • 原文地址:https://www.cnblogs.com/caiyishuai/p/8601082.html
Copyright © 2011-2022 走看看