CF156C.Cipher

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Sherlock Holmes found a mysterious correspondence of two VIPs and made up his mind to read it. But there is a problem! The correspondence turned out to be encrypted. The detective tried really hard to decipher the correspondence, but he couldn't understand anything.

At last, after some thought, he thought of something. Let's say there is a word ss , consisting of s|s| lowercase Latin letters. Then for one operation you can choose a certain position pp ( 1<=p<|s| ) and perform one of the following actions:

  • either replace letter sps_{p} with the one that alphabetically follows it and replace letter sp+1s_{p+1} with the one that alphabetically precedes it;
  • or replace letter sps_{p} with the one that alphabetically precedes it and replace letter sp+1s_{p+1} with the one that alphabetically follows it.

Let us note that letter "z" doesn't have a defined following letter and letter "a" doesn't have a defined preceding letter. That's why the corresponding changes are not acceptable. If the operation requires performing at least one unacceptable change, then such operation cannot be performed.

Two words coincide in their meaning iff one of them can be transformed into the other one as a result of zero or more operations.

Sherlock Holmes needs to learn to quickly determine the following for each word: how many words can exist that coincide in their meaning with the given word, but differs from the given word in at least one character? Count this number for him modulo 10000000071000000007 (109+7)(10^{9}+7) .

输入格式

The input data contains several tests. The first line contains the only integer tt ( 1<=t<=1041<=t<=10^{4} ) — the number of tests.

Next tt lines contain the words, one per line. Each word consists of lowercase Latin letters and has length from 11 to 100100 , inclusive. Lengths of words can differ.

输出格式

For each word you should print the number of different other words that coincide with it in their meaning — not from the words listed in the input data, but from all possible words. As the sought number can be very large, print its value modulo 10000000071000000007 (109+7)(10^{9}+7) .

输入输出样例

  • 输入#1

    1
    ab
    

    输出#1

    1
    
  • 输入#2

    1
    aaaaaaaaaaa
    

    输出#2

    0
    
  • 输入#3

    2
    ya
    klmbfxzb
    

    输出#3

    24
    320092793
    

说明/提示

Some explanations about the operation:

  • Note that for each letter, we can clearly define the letter that follows it. Letter "b" alphabetically follows letter "a", letter "c" follows letter "b", ..., "z" follows letter "y".
  • Preceding letters are defined in the similar manner: letter "y" precedes letter "z", ..., "a" precedes letter "b".
  • Note that the operation never changes a word's length.

In the first sample you can obtain the only other word "ba". In the second sample you cannot obtain any other word, so the correct answer is 00 .

Consider the third sample. One operation can transform word "klmbfxzb" into word "klmcexzb": we should choose p=4p=4 , and replace the fourth letter with the following one ("b" "c"), and the fifth one — with the preceding one ("f" "e"). Also, we can obtain many other words from this one. An operation can transform word "ya" only into one other word "xb".

Word "ya" coincides in its meaning with words "xb", "wc", "vd", ..., "ay" (overall there are 2424 other words). The word "klmbfxzb has many more variants — there are 33200928143320092814 other words that coincide with in the meaning. So the answer for the first word equals 2424 and for the second one equals 320092793320092793 — the number 33200928143320092814 modulo 109+710^{9}+7

首页