A10867 | Petr and a calendar
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Petr wants to make a calendar for current month. For this purpose he draws a table in which columns correspond to weeks (a week is seven consequent days from Monday to Sunday), rows correspond to weekdays, and cells contain dates. For example, a calendar for January 2017 should look like on the picture:
Petr wants to know how many columns his table should have given the month and the weekday of the first date of that month? Assume that the year is non-leap.
Petr wants to know how many columns his table should have given the month and the weekday of the first date of that month? Assume that the year is non-leap.
输入格式
The only line contain two integers $m$ and $d$ ( $1<=m<=12$ , $1<=d<=7$ ) — the number of month (January is the first month, December is the twelfth) and the weekday of the first date of this month ( $1$ is Monday, $7$ is Sunday).
输出格式
Print single integer: the number of columns the table should have.
输入输出样例
输入 #1
1 7
输出 #1
6
输入 #2
1 1
输出 #2
5
输入 #3
11 6
输出 #3
5
The first example corresponds to the January 2017 shown on the picture in the statements.
In the second example $1$ -st January is Monday, so the whole month fits into $5$ columns.
In the third example $1$ -st November is Saturday and $5$ columns is enough.
In the second example $1$ -st January is Monday, so the whole month fits into $5$ columns.
In the third example $1$ -st November is Saturday and $5$ columns is enough.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted