zoukankan      html  css  js  c++  java
  • zoj The 12th Zhejiang Provincial Collegiate Programming Contest May Day Holiday

    http://acm.zju.edu.cn/onlinejudge/showContestProblem.do?problemId=5500

    The 12th Zhejiang Provincial Collegiate Programming Contest - H
    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

    分析:

    问放五一假能放几天,如果五一是星期一,那么9天,星期二,星期日,那么6天,否则5天
    通过题意,我们得知1928年五一是星期二 , 可以直接累加到输入的年份。


    AC代码:



     1 #include <iostream>
     2 #include <stdio.h>
     3 #include <string.h>
     4 #include <stack>
     5 #include <queue>
     6 #include <map>
     7 #include <set>
     8 #include <vector>
     9 #include <math.h>
    10 #include <algorithm>
    11 using namespace std;
    12 #define ls 2*i
    13 #define rs 2*i+1
    14 #define up(i,x,y) for(i=x;i<=y;i++)
    15 #define down(i,x,y) for(i=x;i>=y;i--)
    16 #define mem(a,x) memset(a,x,sizeof(a))
    17 #define w(a) while(a)
    18 #define LL long long
    19 const double pi = acos(-1.0);
    20 #define Len 20005
    21 #define mod 19999997
    22 const int INF = 0x3f3f3f3f;
    23 
    24 int ans[10] = {6,9,6,5,5,5,5};
    25 int t,n;
    26 
    27 int leap(int y)
    28 {
    29     if(y%400==0 || (y%4==0&&y%100!=0))
    30         return 366;
    31     return 365;
    32 }
    33 
    34 int main()
    35 {
    36     scanf("%d",&t);
    37     w(t--)
    38     {
    39         scanf("%d",&n);
    40         int d = 2,y = 1928;
    41         if(n==y)
    42         printf("%d
    ",ans[d]);
    43         else
    44         {
    45             w(n!=y)
    46             {
    47                 y++;
    48                 d = (d+leap(y))%7;
    49             }
    50             printf("%d
    ",ans[d]);
    51         }
    52     }
    53 
    54     return 0;
    55 }
    View Code
  • 相关阅读:
    11月1号笔试题总结
    10月30笔试题总结
    web前端常用单词
    9月13日·碎碎念
    python 匿名函数
    python 二分法查找
    python 递归
    python内置函数
    python 列表生成式
    python 生成器
  • 原文地址:https://www.cnblogs.com/jeff-wgc/p/4456539.html
Copyright © 2011-2022 走看看