CodeForces 611A New Year and Days (新年存钱计划)

A. New Year and Days

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Today is Wednesday,the third day of the week. What's more interesting is that tomorrow is the lastday of the year 2015.

Limak is a littlepolar bear. He enjoyed this year a lot. Now, he is so eager to the coming year2016.

Limak wants to provehow responsible a bear he is. He is going to regularly save candies for theentire year 2016! He considers various saving plans. He can save one candyeither on some fixed day of the week or on some fixed day of the month.

Limak chose oneparticular plan. He isn't sure how many candies he will save in the 2016 withhis plan. Please, calculate it and tell him.

Input

The only line of theinput is in one of the following two formats:

·   "x of week"wherex(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"wherex(1 ≤ x ≤ 31)denotes the day of the month.

Output

Print one integer — the number ofcandies Limak will save in the year 2016.

Examples

Input

4 of week

Output

52

Input

30 of month

Output

11

Note

Polar bears use theGregorian 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 sampleLimak wants to save one candy on each Thursday (the 4-th day of the week).There are52Thursdays in the 2016. Thus, he will save52candies in total.

In the second sample Limak wants tosave one candy on the 30-th day of each month. There is the 30-th day inexactly11months in the 2016 — all months but February. It means that Limak willsave11candies in total.

 

 

参考题意:

新年快到了,你要计划存钱昂,计划就是按照当月的第几天省;或者按照一周的星期几来存,问你一年下来,能存多少次。

 注意后天才是2016年第一天!!

参考代码:

 

#include<stdio.h>
#include<stdlib.h>
#include<math.h>
#include<string.h>
#include<algorithm>
#define MYDD 66

using namespace std;

int main() {
	int x;
	char wqs[MYDD];	//2016年是闰年
	while(scanf("%d of %s",&x,wqs)!=EOF) {
		if(strcmp(wqs,"week")==0) {
			if(x==6||x==5)//坑人昂,明天是最后一天
				puts("53");
			else
				puts("52");
		} else {
			if(x==30)
				puts("11");
			else if(x==31)//......
				puts("7");	
			else
				puts("12");
		}
	}
	return 0;
}

/*
4 of week
30 of month
31 of month
29 of month
*/

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值