#ABC159B. String Palindrome
String Palindrome
题目描述
A string of an odd length is said to be a strong palindrome if and only if all of the following conditions are satisfied:
- is a palindrome.
- Let be the length of . The string formed by the -st through -th characters of is a palindrome.
- The string consisting of the -st through -th characters of is a palindrome.
Determine whether is a strong palindrome.
奇数长度的字符串 是一个强回文字符串,当且仅当以下所有条件都满足时:
- 是一个回文字符串。
- 设 是 的长度。由 的 -st 到 -th 字符组成的字符串是一个回文字符串。
- 由 的 -st 到 -th 字符组成的字符串是一个回文字符串。
判断 是否是强回文。
输入格式
输入内容按以下格式标准输入:
输出格式
如果 是强回文,则打印 "是";否则打印 "否"。
样例 #1
样例输入 #1
akasaka
样例输出 #1
Yes
样例 #2
样例输入 #2
level
样例输出 #2
No
样例 #3
样例输入 #3
atcoder
样例输出 #3
No
说明
数据规模与约定
- 由小写英文字母组成。
- 的长度是介于 和 (含)之间的奇数。
样例 解释
- 是 "akasaka"。
- 由 (st)到 (rd)个字符组成的字符串是 "aka"。
- 由 -th到 -th字符组成的字符串是 "aka"。所有这些都是回文,所以 是一个强回文。