eolymp
bolt
Try our new interface for solving problems
Problems

Bovine Genetics

Bovine Genetics

After sequencing the genomes of his cows, Farmer John has moved onto genomic editing! As we know, a genome can be represented by a string consisting of As, Cs, Gs and Ts. The maximum length of a genome under consideration by Farmer John is 105.

Farmer John starts with a single genome and edits it by performing the following steps:

  • Split the genome between every two consecutive equal characters.
  • Reverse each of the resulting substrings.
  • Concatenate the reversed substrings together in the same order.

For example, if FJ started with the genome AGGCTTT then he would perform the following steps:

  • Split between the consecutive Gs and Ts to get AG | GCT | T | T.
  • Reverse each substring to get GA | TCG | T | T.
  • Concatenate the substrings together to get GATCGTT.

Unfortunately, after editing the genome, Farmer John's computer crashed and he lost the sequence of the genome he originally started with. Furthermore, some parts of the edited genome have been damaged, meaning that they have been replaced by question marks.

Given the sequence of the edited genome, help FJ determine the number of possibilities for the original genome, modulo 109 + 7.

Input

A non-empty string where each character is one of A, G, C, T or ?.

Output

The number of possible original genomes modulo 109 + 7.

Example 1

The question mark can be any of A, G, C or T.

Example 2

There are two possible original genomes aside from AGGCTTT, which was described above.

AGGATTT -> AG | GAT | T | T -> GA | TAG | T | T -> GATAGTT

TAGGTTT -> TAG | GT | T | T -> GAT | TG | T | T -> GATTGTT
Time limit 2 seconds
Memory limit 256 MiB
Input example #1
?
Output example #1
4
Input example #2
GAT?GTT
Output example #2
3
Source 2020 USACO December, Gold