A11382 | Months and Years
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Everybody in Russia uses Gregorian calendar. In this calendar there are $31$ days in January, $28$ or $29$ days in February (depending on whether the year is leap or not), $31$ days in March, $30$ days in April, $31$ days in May, $30$ in June, $31$ in July, $31$ in August, $30$ in September, $31$ in October, $30$ in November, $31$ in December.
A year is leap in one of two cases: either its number is divisible by $4$ , but not divisible by $100$ , or is divisible by $400$ . For example, the following years are leap: $2000$ , $2004$ , but years $1900$ and $2018$ are not leap.
In this problem you are given $n$ ( $1<=n<=24$ ) integers $a_{1},a_{2},...,a_{n}$ , and you have to check if these integers could be durations in days of $n$ consecutive months, according to Gregorian calendar. Note that these months could belong to several consecutive years. In other words, check if there is a month in some year, such that its duration is $a_{1}$ days, duration of the next month is $a_{2}$ days, and so on.
A year is leap in one of two cases: either its number is divisible by $4$ , but not divisible by $100$ , or is divisible by $400$ . For example, the following years are leap: $2000$ , $2004$ , but years $1900$ and $2018$ are not leap.
In this problem you are given $n$ ( $1<=n<=24$ ) integers $a_{1},a_{2},...,a_{n}$ , and you have to check if these integers could be durations in days of $n$ consecutive months, according to Gregorian calendar. Note that these months could belong to several consecutive years. In other words, check if there is a month in some year, such that its duration is $a_{1}$ days, duration of the next month is $a_{2}$ days, and so on.
输入格式
The first line contains single integer $n$ ( $1<=n<=24$ ) — the number of integers.
The second line contains $n$ integers $a_{1},a_{2},...,a_{n}$ ( $28<=a_{i}<=31$ ) — the numbers you are to check.
The second line contains $n$ integers $a_{1},a_{2},...,a_{n}$ ( $28<=a_{i}<=31$ ) — the numbers you are to check.
输出格式
If there are several consecutive months that fit the sequence, print "YES" (without quotes). Otherwise, print "NO" (without quotes).
You can print each letter in arbitrary case (small or large).
You can print each letter in arbitrary case (small or large).
输入输出样例
输入 #1
4 31 31 30 31
输出 #1
Yes
输入 #2
2 30 30
输出 #2
No
输入 #3
5 29 31 30 31 30
输出 #3
Yes
输入 #4
3 31 28 30
输出 #4
No
输入 #5
3 31 31 28
输出 #5
Yes
In the first example the integers can denote months July, August, September and October.
In the second example the answer is no, because there are no two consecutive months each having $30$ days.
In the third example the months are: February (leap year) — March — April – May — June.
In the fourth example the number of days in the second month is $28$ , so this is February. March follows February and has $31$ days, but not $30$ , so the answer is NO.
In the fifth example the months are: December — January — February (non-leap year).
In the second example the answer is no, because there are no two consecutive months each having $30$ days.
In the third example the months are: February (leap year) — March — April – May — June.
In the fourth example the number of days in the second month is $28$ , so this is February. March follows February and has $31$ days, but not $30$ , so the answer is NO.
In the fifth example the months are: December — January — February (non-leap year).
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted