A11081 | Odds and Ends
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Where do odds begin, and where do they end? Where does hope emerge, and will they ever break?
Given an integer sequence $a_{1},a_{2},...,a_{n}$ of length $n$ . Decide whether it is possible to divide it into an odd number of non-empty subsegments, the each of which has an odd length and begins and ends with odd numbers.
A subsegment is a contiguous slice of the whole sequence. For example, ${3,4,5}$ and ${1}$ are subsegments of sequence ${1,2,3,4,5,6}$ , while ${1,2,4}$ and ${7}$ are not.
Given an integer sequence $a_{1},a_{2},...,a_{n}$ of length $n$ . Decide whether it is possible to divide it into an odd number of non-empty subsegments, the each of which has an odd length and begins and ends with odd numbers.
A subsegment is a contiguous slice of the whole sequence. For example, ${3,4,5}$ and ${1}$ are subsegments of sequence ${1,2,3,4,5,6}$ , while ${1,2,4}$ and ${7}$ are not.
输入格式
The first line of input contains a non-negative integer $n$ ( $1<=n<=100$ ) — the length of the sequence.
The second line contains $n$ space-separated non-negative integers $a_{1},a_{2},...,a_{n}$ ( $0<=a_{i}<=100$ ) — the elements of the sequence.
The second line contains $n$ space-separated non-negative integers $a_{1},a_{2},...,a_{n}$ ( $0<=a_{i}<=100$ ) — the elements of the sequence.
输出格式
Output "Yes" if it's possible to fulfill the requirements, and "No" otherwise.
You can output each letter in any case (upper or lower).
You can output each letter in any case (upper or lower).
输入输出样例
输入 #1
3 1 3 5
输出 #1
Yes
输入 #2
5 1 0 1 5 1
输出 #2
Yes
输入 #3
3 4 3 1
输出 #3
No
输入 #4
4 3 9 9 3
输出 #4
No
In the first example, divide the sequence into $1$ subsegment: ${1,3,5}$ and the requirements will be met.
In the second example, divide the sequence into $3$ subsegments: ${1,0,1}$ , ${5}$ , ${1}$ .
In the third example, one of the subsegments must start with $4$ which is an even number, thus the requirements cannot be met.
In the fourth example, the sequence can be divided into $2$ subsegments: ${3,9,9}$ , ${3}$ , but this is not a valid solution because $2$ is an even number.
In the second example, divide the sequence into $3$ subsegments: ${1,0,1}$ , ${5}$ , ${1}$ .
In the third example, one of the subsegments must start with $4$ which is an even number, thus the requirements cannot be met.
In the fourth example, the sequence can be divided into $2$ subsegments: ${3,9,9}$ , ${3}$ , but this is not a valid solution because $2$ is an even number.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted