{"problem":{"name":"Cell Inversion","description":{"content":"There are $2N$ squares arranged from left to right. You are given a string of length $2N$ representing the color of each of the squares. The color of the $i$\\-th square from the left is black if the $","description_type":"Markdown"},"platform":"AtCoder","limit":{"time_limit":2000,"memory_limit":262144},"difficulty":"None","is_remote":true,"is_sync":true,"sync_url":null,"sign":"jsc2019_qual_c"},"statements":[{"statement_type":"Markdown","content":"There are $2N$ squares arranged from left to right. You are given a string of length $2N$ representing the color of each of the squares.\nThe color of the $i$\\-th square from the left is black if the $i$\\-th character of $S$ is `B`, and white if that character is `W`.\nYou will perform the following operation exactly $N$ times: choose two distinct squares, then invert the colors of these squares and the squares between them. Here, to invert the color of a square is to make it white if it is black, and vice versa.\nThroughout this process, you cannot choose the same square twice or more. That is, each square has to be chosen exactly once.\nFind the number of ways to make all the squares white at the end of the process, modulo $10^9+7$.\nTwo ways to make the squares white are considered different if and only if there exists $i$ $(1 \\leq i \\leq N)$ such that the pair of the squares chosen in the $i$\\-th operation is different.\n\n## Constraints\n\n*   $1 \\leq N \\leq 10^5$\n*   $|S| = 2N$\n*   Each character of $S$ is `B` or `W`.\n\n## Input\n\nInput is given from Standard Input in the following format:\n\n$N$\n$S$\n\n[samples]","is_translate":false,"language":"English"}],"meta":{"iden":"jsc2019_qual_c","tags":[],"sample_group":[["2\nBWWB","4\n\nThere are four ways to make all the squares white, as follows:\n\n*   Choose Squares $1, 3$ in the first operation, and choose Squares $2, 4$ in the second operation.\n*   Choose Squares $2, 4$ in the first operation, and choose Squares $1, 3$ in the second operation.\n*   Choose Squares $1, 4$ in the first operation, and choose Squares $2, 3$ in the second operation.\n*   Choose Squares $2, 3$ in the first operation, and choose Squares $1, 4$ in the second operation."],["4\nBWBBWWWB","288"],["5\nWWWWWWWWWW","0"]],"created_at":"2026-03-03 11:01:14"}}