A popular TV show "Kak? Zachem? Pochemu?" highlights a team of six players working together to solve challenging questions. Players sit around a circular table divided into n sectors numbered clockwise from 1 to n. At the start of the game, each sector contains an envelope with a question to be answered.
Each round, the spinning top at the center of the table chooses a sector of the table uniformly at random. If the chosen sector contains an envelope, the host opens it and reads the question inside. If there is no envelope in the chosen sector, the host opens the next envelope in the clockwise direction from the chosen sector instead. After the round, the opened envelope is removed from the table.
Tonight, the audience's favorite team is playing. They have already played n−k rounds out of n, so there are k envelopes remaining on the table. Things are not looking good for the team --- one more incorrect answer will send them home. One of the questions is a special, notoriously hard question called "Hyperblitz". The team is confident they can answer each of the remaining questions except "Hyperblitz". Find the expected number of rounds they will play, modulo 998,244,353 (see the Output section for details).
The first line contains three integers n, k, and s --- the total number of sectors, the number of remaining questions, and the sector containing the "Hyperblitz" question (1≤n≤109; 1≤k≤min(n,200); 1≤s≤n). It is guaranteed that n is not equal to 998,244,353.
The second line contains k distinct integers q_1,q_2,…,q_k --- the numbers of sectors that still have envelopes, in clockwise order (1≤q_1<q_2<…<q_k≤n).
There is exactly one index i with q_i=s.
Print a single integer --- the expected number of rounds the team will play (including the inevitable "Hyperblitz"), modulo 998,244,353.
Formally, let M=998,244,353. It can be shown that the expected number of rounds can be expressed as an irreducible fraction qp, where p and q are integers and q≡0(modM). Print the integer equal to p⋅q−1modM. In other words, print such an integer x that 0≤x<M and x⋅q≡p(modM).
In the first example test, in the first round, the team plays the "Hyperblitz" with probability 31, so with probability 31 they play 1 round, and with probability 32 they play 2 rounds. The expected number of rounds is 1⋅31+2⋅32=35.
As 3−1mod998,244,353=332,748,118, the correct output is 5⋅332,748,118mod998,244,353=665,496,237.