2285: hehe

内存限制:128 MB 时间限制:1.000 S
评测方式:文本比较 命题人:
提交:96 解决:27

题目描述

As we all know, Fat Brother likes MeiZi every much, he always find some topic to talk with her. But as Fat Brother is so low profile that no one knows he is a rich-two-generation expect the author, MeiZi always rejects him by typing “hehe” (wqnmlgb). You have to believe that there is still some idealized person just like Fat Brother. They think that the meaning of “hehe” is just “hehe”, such like “hihi”, “haha” and so on. But indeed sometimes “hehe” may really means “hehe”. Now you are given a sentence, every “hehe” in this sentence can replace by “wqnmlgb” or just “hehe”, please calculate that how many different meaning of this sentence may be. Note that “wqnmlgb” means “我去年买了个表” in Chinese.

输入

The first line contains only one integer T, which is the number of test cases.
Each test case contains a string means the given sentence. Note that the given sentence just consists of lowercase letters.

输出

For each test case, output the case number first, and then output the number of the different meaning of this sentence may be. Since this number may be quite large, you should output the answer modulo 10007.

样例输入 复制

4
wanshangniyoukongme
womenyiqichuqukanxingxingba
bulehehewohaiyoushi
eheheheh

样例输出 复制

Case 1: 1
Case 2: 1
Case 3: 2
Case 4: 3

提示

Range of the test data
T<=100
The length of each sentence <= 10086

来源/分类