The K^{th} power string of a string S is a string T formed by writing S string K times consecutively. For example, the 3^{rd} power string of the string "abc" is the string "abcabcabc".
Given an integer K and two strings S and T. Check if T is the K^{th} power string of S.
Consists of 3 lines:
If T is the K^{th} power string of S, print YES
. Otherwise, print NO
.
Dữ liệu vào Sao chép |
abc abcabcabc 3 |
Dữ liệu ra Sao chép |
YES |
Dữ liệu vào Sao chép |
abc abcabcabc 2 |
Dữ liệu ra Sao chép |
NO |
Dữ liệu vào Sao chép |
xyz abc 1 |
Dữ liệu ra Sao chép |
NO |