#ABC103B. String Rotation
String Rotation
题目描述
You are given string and consisting of lowercase English letters.
Determine if equals after rotation.
That is, determine if equals after the following operation is performed some number of times:
Operation: Let . Change to .
Here, denotes the length of the string .
给你一个由小写英文字母组成的字符串 和 。
请判断 在_旋转_后是否等于 。
也就是说,在进行一定次数的以下操作后,判断 是否等于 :
操作:让 .将 改为 。
这里, 表示字符串 的长度。
输入格式
输入内容按以下格式标准输入:
输出格式
如果 在 rotation 之后等于 ,则打印 "是";如果不等于,则打印 "否"。
样例 #1
样例输入 #1
kyoto
tokyo
样例输出 #1
Yes
样例 #2
样例输入 #2
abc
arc
样例输出 #2
No
样例 #3
样例输入 #3
aaaaaaaaaaaaaaab
aaaaaaaaaaaaaaab
样例输出 #3
Yes
说明
数据规模与约定
- 和 由小写英文字母组成。
样例 解释
- 在第一次操作中,"kyoto "变成了 "okyot"。
- 在第二次操作中,"okyot "变成了 "tokyo"。
样例 解释
经过多次运算后,"abc "不等于 "arc"。