#ABC145B. Echo
Echo
题目描述
Given are a positive integer and a string of length consisting of lowercase English letters.
Determine whether the string is a concatenation of two copies of some string. That is, determine whether there is a string such that .
给出一个正整数 和一个长度为 的由小写英文字母组成的字符串 。
请判断该字符串是否是某个字符串的两个副本的连接。也就是说,确定是否有一个字符串 与 相连。
输入格式
输入内容按以下格式标准输入:
输出格式
如果 是某个字符串的两个副本的连接,则打印 "是";否则,打印 "否"。
样例 #1
样例输入 #1
6
abcabc
样例输出 #1
Yes
样例 #2
样例输入 #2
6
abcadc
样例输出 #2
No
样例 #3
样例输入 #3
1
z
样例输出 #3
No
说明
数据规模与约定
- 由小写英文字母组成。
样例 解释
让 ABC "和 .