New Year and Days
Description
Today is Wednesday, the third day of the week. What's more interesting is that tomorrow is the last day of the year 2015.
Limak is a little polar bear. He enjoyed this year a lot. Now, he is so eager to the coming year 2016.
Limak wants to prove how responsible a bear he is. He is going to regularly save candies for the entire year 2016! He considers various saving plans. He can save one candy either on some fixed day of the week or on some fixed day of the month.
Limak chose one particular plan. He isn't sure how many candies he will save in the 2016 with his plan. Please, calculate it and tell him.
Input
The only line of the input is in one of the following two formats:
"x of week" where x (1 ≤ x ≤ 7) denotes the day of the week. The 1-st day is Monday and the 7-th one is Sunday.
"x of month" where x (1 ≤ x ≤ 31) denotes the day of the month.
Output
Print one integer — the number of candies Limak will save in the year 2016.
Sample Input
Input
4 of week
Output
52
Input
30 of month
Output
11
Hint
Polar bears use the Gregorian calendar. It is the most common calendar and you likely use it too. You can read about it on Wikipedia if you want to – https://en.wikipedia.org/wiki/Gregorian_calendar. The week starts with Monday.
In the first sample Limak wants to save one candy on each Thursday (the 4-th day of the week). There are 52 Thursdays in the 2016. Thus, he will save 52 candies in total.
Today is Wednesday, the third day of the week. What's more interesting is that tomorrow is the last day of the year 2015.
Limak is a little polar bear. He enjoyed this year a lot. Now, he is so eager to the coming year 2016.
Limak wants to prove how responsible a bear he is. He is going to regularly save candies for the entire year 2016! He considers various saving plans. He can save one candy either on some fixed day of the week or on some fixed day of the month.
Limak chose one particular plan. He isn't sure how many candies he will save in the 2016 with his plan. Please, calculate it and tell him.
Input
The only line of the input is in one of the following two formats:
"x of week" where x (1 ≤ x ≤ 7) denotes the day of the week. The 1-st day is Monday and the 7-th one is Sunday.
"x of month" where x (1 ≤ x ≤ 31) denotes the day of the month.
Output
Print one integer — the number of candies Limak will save in the year 2016.
Sample Input
Input
4 of week
Output
52
Input
30 of month
Output
11
Hint
Polar bears use the Gregorian calendar. It is the most common calendar and you likely use it too. You can read about it on Wikipedia if you want to – https://en.wikipedia.org/wiki/Gregorian_calendar. The week starts with Monday.
In the first sample Limak wants to save one candy on each Thursday (the 4-th day of the week). There are 52 Thursdays in the 2016. Thus, he will save 52 candies in total.
In the second sample Limak wants to save one candy on the 30-th day of each month. There is the 30-th day in exactly 11 months in the 2016 — all months but February. It means that Limak will save 11 candies in total.
#include<stdio.h>
#include<string.h>
int main()
{
int a;
char b[10];
while(scanf("%d of %s",&a,b)!=EOF)
{
if(strcmp(b,"week")==0)
{
if(a<5||a==7)
printf("52\n");
if(a==5||a==6)
printf("53\n");
}
else
{
if(a<30) printf("12\n");
if(a==30) printf("11\n");
if(a==31) printf("7\n");
}
}
return 0;
}
相關文章
- New year innovation ?
- Hopes for the New Year
- New Year and Ancient Prophecy題解
- 2021 New Year‘s Resolution
- Merry Christmas & Happy New Year!!APP
- 元旦日隨想:新年不外又一年(new year is just another year )
- codeforces 1284C New Year and Permutation
- CF908D-New Year and Arbitrary Arrangement
- Codeforces 500B. New Year Permutation[連通性]
- CF908D New Year and Arbitrary Arrangement 題解
- CodeForces 908B New Year and Buggy Bot
- flask08_daysFlask
- docker_02daysDocker
- docker_03daysDocker3D
- docker_04daysDocker
- Kotlin31DaysKotlin
- GAP YEAR——上半學期總結
- 時間型別interval year to month型別
- Get n days before now
- Python-100-DaysPython
- MySQL內建函式:year()、 week()相容MySql函式
- IBMer One Year,累人的啊。(^_^)IBM
- Codeforces Good Bye 2017 C. New Year and Curling(運用數學解析幾何的知識判斷)Go
- mysql partition table use to_days bugMySql
- Days on my past 童年英文版AST
- New start new hope!
- new self()與new static()
- new Child();new Child(1);
- 0days最好的破解網站網站
- [轉帖]Moving the JDK to a Two Year LTS CadenceJDK
- New
- VM - 6Days_Lab-v1.0.1 的破解
- [LeetCode] 568. Maximum Vacation DaysLeetCode
- 課程:A New History for a New China, 1700-2000: New Data and New Methods, Part 1
- JavaScript中的new map()和new set()使用詳細(new map()和new set()的區別)JavaScript
- 理解new和實現一個new
- new learn
- A New Start