首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >【CodeForces】611A - New Year and Days(水)

【CodeForces】611A - New Year and Days(水)

作者头像
FishWang
发布2025-08-26 15:27:07
发布2025-08-26 15:27:07
15700
代码可运行
举报
运行总次数:0
代码可运行

点击打开题目

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 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.

Examples

input

代码语言:javascript
代码运行次数:0
运行
复制
4 of week

output

代码语言:javascript
代码运行次数:0
运行
复制
52

input

代码语言:javascript
代码运行次数:0
运行
复制
30 of month

output

代码语言:javascript
代码运行次数:0
运行
复制
11

Note

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.

看代码应该能懂,难度不大。

代码如下:

代码语言:javascript
代码运行次数:0
运行
复制
#include <cstdio>
int month[] = {0,31,29,31,30,31,30,31,31,30,31,30,31};
int ant;
char t[5];
char op[10];
int main()
{
	int ans;
	while (~scanf ("%d %s %s",&ant,t,op))
	{
		ans = 0;
		if (op[0] == 'm')
		{
			for (int i = 1 ; i <= 12 ; i++)
				if (month[i] >= ant)
					ans++;
			printf ("%d\n",ans);
		}
		else
		{
			ans = 366 / 7;
			if (ant == 5 || ant == 6)
				ans++;
			printf ("%d\n",ans);
		}
	}
	return 0;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2016-07-21,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档