{"raw_statement":[{"iden":"problem statement","content":"$N$ people numbered $1$ to $N$ are standing in a circle, in the clockwise order of Person $1$, Person $2$, $\\cdots$, Person $N$. The direction each person faces is given by a string $S$ of length $N$. For each $i$ $(1 \\leq i \\leq N)$, Person $i$ is facing in the counter-clockwise direction if $S_i = $ `L`, and clockwise direction if $S_i = $ `R`.\nThe following operation will be repeated $N-1$ times.\n\n*   Choose one of the remaining people with equal probability, and remove from the circle the nearest person seen from the chosen person. This incurs a cost equal to the distance from the chosen person to the removed person.\n\nHere, the distance from Person $i$ to Person $j$ $(i \\neq j)$ is defined as follows.\n\n1.  When Person $i$ is facing in the clockwise direction:\n    *   $j-i$ if $i \\lt j$;\n    *   $j-i+N$ if $i \\gt j$.\n2.  When Person $i$ is facing in the counter-clockwise direction:\n    *   $i-j+N$ if $i \\lt j$;\n    *   $i-j$ if $i \\gt j$.\n\nFind the expected value of the total cost incurred, modulo $998244353$ (see Notes)."},{"iden":"notes","content":"It can be proved that the sought expected value is always a rational number. Additionally, under the Constraints of this problem, when that value is expressed as $\\frac{P}{Q}$ using two coprime integers $P$ and $Q$, there is a unique integer $R$ such that $R \\times Q \\equiv P\\pmod{998244353}$ and $0 \\leq R \\lt 998244353$. Find this $R$."},{"iden":"constraints","content":"*   $2 \\leq N \\leq 300$\n*   $N$ is an integer.\n*   $S$ is a string of length $N$ consisting of `L` and `R`."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$N$\n$S$"},{"iden":"sample input 1","content":"3\nLLR"},{"iden":"sample output 1","content":"831870297\n\nThe sought expected value is $\\frac{17}{6}$. We have $831870297 \\times 6 \\equiv 17\\pmod{998244353}$, so $831870297$ should be printed.\nFor your reference, here is one possible scenario.\n\n1.  Person $2$ is chosen. The nearest person seen from Person $2$ remaining in the circle is Person $1$, who gets removed from the circle.\n2.  Person $2$ is chosen again. The nearest person seen from Person $2$ remaining in the circle is Person $3$, who gets removed from the circle.\n\nIn this case, the total cost incurred is $3(=1+2)$."},{"iden":"sample input 2","content":"10\nRRRRRRLLRR"},{"iden":"sample output 2","content":"460301586"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}