CodeForces 554A

链接:点击打开链接

题意:给出一个字符串,在字母间插入一个字母看能形成几种新的字符串(具体可以看题目底下的提示);

代码:

#include<cstring>
#include<cstdio>
#include<iostream>
#include<cmath>
#include<algorithm>
using namespace std;
int main(){
    char str[25];
    int l;
    while(cin>>str){
        l=strlen(str);         //有(l+1)个位置可以插入字母,每个位置有26中可能,但是每一个字母
        cout<<(l+1)*26-l<<endl;//左右位置插入与当前字母相同的字母时产生了重复,有几个字符产生几种
    }                          //重复,因此减掉字符串的长度
    return 0;
}

 

你可能感兴趣的:(CodeForces 554A)