Codeforces Round #305 (Div. 2) A

Description

While Mike was walking in the subway, all the stuff in his back-bag dropped on the ground. There were several fax messages among them. He concatenated these strings in some order and now he has string s.

He is not sure if this is his own back-bag or someone else's. He remembered that there were exactly k messages in his own bag, each was a palindrome string and all those strings had the same length.

He asked you to help him and tell him if he has worn his own back-bag. Check if the given string s is a concatenation of k palindromes of the same length.

Input

The first line of input contains string s containing lowercase English letters (1 ≤ |s| ≤ 1000).

The second line contains integer k (1 ≤ k ≤ 1000).

Output

Print "YES"(without quotes) if he has worn his own back-bag or "NO"(without quotes) otherwise.

Examples
input
saba
2
output
NO
input
saddastavvat
2
output
YES
首先长度不能整除的当然不符合要求。
然后我们按照要求分割字符串,判断是不是回文串就好了
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include<iostream>
#include<stdio.h>
#include<string.h>
using namespace std;
int main()
{
    string s;
    int n;
    cin>>s;
    cin>>n;
    if(s.length()%n)
    {
        cout<<"NO"<<endl;
    }
    else
    {
        int i,j;
        int mid=s.length()/n;
        for(i=0;i<n;i++)
        {
            string ss=s.substr(i*mid,mid);
            for(int j=0;j<=ss.length()/2;j++)
            {
                if(ss[j]!=ss[ss.length()-1-j])
                {
                    cout<<"NO"<<endl;
                    return 0;
                }
            }
         //   cout<<ss<<endl;
        }
        cout<<"YES"<<endl;
 
    }
 
 
 
 
    return 0;
}

  

 

 

posted @   樱花落舞  阅读(300)  评论(0编辑  收藏  举报
编辑推荐:
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
阅读排行:
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· Manus的开源复刻OpenManus初探
· AI 智能体引爆开源社区「GitHub 热点速览」
· 从HTTP原因短语缺失研究HTTP/2和HTTP/3的设计差异
· 三行代码完成国际化适配,妙~啊~
点击右上角即可分享
微信分享提示