暑假第一周 A

来源:互联网 发布:c语言中的指针是什么 编辑:程序博客网 时间:2024/06/05 06:03

The girl Taylor has a beautiful calendar for the year y. In the calendar all days are given with their days of week: Monday, Tuesday, Wednesday, Thursday, Friday, Saturday and Sunday.

The calendar is so beautiful that she wants to know what is the next year after ywhen the calendar will be exactly the same. Help Taylor to find that year.

Note that leap years has 366 days. The year is leap if it is divisible by 400 or it is divisible by 4, but not by 100 (https://en.wikipedia.org/wiki/Leap_year).

Input

The only line contains integer y (1000 ≤ y < 100'000) — the year of the calendar.

Output

Print the only integer y' — the next year after y when the calendar will be the same. Note that you should find the first year after y with the same calendar.

Example
Input
2016
Output
2044
Input
2000
Output
2028
Input
50501
Output
50507
Note

Today is Monday, the 13th of June, 2016

//A

#include <iostream>
using namespace std;
int Leap(int y){
    if(y%400==0||(y%4==0&&y%100!=0)){
        return 1;
    }
    return 0;
}
int main()
{
    int y;
    while(cin>>y){
    int j=0;
    int flag=Leap(y);
    for(int i=y; ;i++){
        if(Leap(i)){
            j+=2;
        }else j++;
        if(j%7==0&&Leap(i+1)==flag){
            cout<<i+1<<endl;
            break;
        }
    }
    }
    return 0;
}
原创粉丝点击