CF50B.Choosing Symbol Pairs

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There is a given string SS consisting of NN symbols. Your task is to find the number of ordered pairs of integers ii and jj such that

1. 1<=i,j<=N1<=i,j<=N

2. S[i]=S[j]S[i]=S[j] , that is the ii -th symbol of string SS is equal to the jj -th.

输入格式

The single input line contains SS , consisting of lowercase Latin letters and digits. It is guaranteed that string SS in not empty and its length does not exceed 10510^{5} .

输出格式

Print a single number which represents the number of pairs ii and jj with the needed property. Pairs (x,y)(x,y) and (y,x)(y,x) should be considered different, i.e. the ordered pairs count.

输入输出样例

  • 输入#1

    great10
    

    输出#1

    7
    
  • 输入#2

    aaaaaaaaaa
    

    输出#2

    100
    
首页