#arc094d. [arc094_d]Normalization
[arc094_d]Normalization
Problem Statement
You are given a string consisting of a
,b
and c
. Find the number of strings that can be possibly obtained by repeatedly performing the following operation zero or more times, modulo :
- Choose an integer such that and the -th and -th characters in are different. Replace each of the -th and -th characters in with the character that differs from both of them (among
a
,b
andc
).
Constraints
- consists of
a
,b
andc
.
Input
Input is given from Standard Input in the following format:
Output
Print the number of strings that can be possibly obtained by repeatedly performing the operation, modulo .
Sample Input 1
abc
Sample Output 1
3
abc
, aaa
and ccc
can be obtained.
Sample Input 2
abbac
Sample Output 2
65
Sample Input 3
babacabac
Sample Output 3
6310
Sample Input 4
ababacbcacbacacbcbbcbbacbaccacbacbacba
Sample Output 4
148010497