CF554A.Kyoya and Photobooks

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Kyoya Ootori is selling photobooks of the Ouran High School Host Club. He has 26 photos, labeled "a" to "z", and he has compiled them into a photo booklet with some photos in some order (possibly with some photos being duplicated). A photo booklet can be described as a string of lowercase letters, consisting of the photos in the booklet in order. He now wants to sell some "special edition" photobooks, each with one extra photo inserted anywhere in the book. He wants to make as many distinct photobooks as possible, so he can make more money. He asks Haruhi, how many distinct photobooks can he make by inserting one extra photo into the photobook he already has?

Please help Haruhi solve this problem.

输入格式

The first line of input will be a single string ss ( 1<=s<=201<=|s|<=20 ). String ss consists only of lowercase English letters.

输出格式

Output a single integer equal to the number of distinct photobooks Kyoya Ootori can make.

输入输出样例

  • 输入#1

    a
    

    输出#1

    51
    
  • 输入#2

    hi
    

    输出#2

    76
    

说明/提示

In the first case, we can make 'ab','ac', ...... ,'az','ba','ca', ...... ,'za', and 'aa', producing a total of 51 distinct photo booklets.

首页