1300 - String Power

Tạo bởi: CLB Olympic Tin học HUTECH

Mô tả yêu cầu

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.

Dữ liệu vào

Consists of 3 lines:

  • The first two lines respectively contain strings S and T
  • The last line contains the integer K.

Dữ liệu ra

If T is the K^{th} power string of S, print YES. Otherwise, print NO.

Giới hạn

  • The strings S and T only contain lowercase Latin characters. The length of each string is not more than 1000 characters.
  • 1 \leq K \leq 1000.

Ví dụ

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
Đăng nhập để làm bài
Thông tin
Giới hạn thời gian 1 giây
Giới hạn bộ nhớ 128 MB