CF1349D.Slime and Biscuits

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Slime and his nn friends are at a party. Slime has designed a game for his friends to play.

At the beginning of the game, the ii -th player has aia_i biscuits. At each second, Slime will choose a biscuit randomly uniformly among all a1+a2++ana_1 + a_2 + \ldots + a_n biscuits, and the owner of this biscuit will give it to a random uniform player among n1n-1 players except himself. The game stops when one person will have all the biscuits.

As the host of the party, Slime wants to know the expected value of the time that the game will last, to hold the next activity on time.

For convenience, as the answer can be represented as a rational number pq\frac{p}{q} for coprime pp and qq , you need to find the value of (pq1)mod998244353(p \cdot q^{-1})\mod 998\,244\,353 . You can prove that qmod9982443530q\mod 998\,244\,353 \neq 0 .

输入格式

The first line contains one integer n (2n100000)n\ (2\le n\le 100\,000) : the number of people playing the game.

The second line contains nn non-negative integers a1,a2,,an (1a1+a2++an300000)a_1,a_2,\dots,a_n\ (1\le a_1+a_2+\dots+a_n\le 300\,000) , where aia_i represents the number of biscuits the ii -th person own at the beginning.

输出格式

Print one integer: the expected value of the time that the game will last, modulo 998244353998\,244\,353 .

输入输出样例

  • 输入#1

    2
    1 1

    输出#1

    1
  • 输入#2

    2
    1 2

    输出#2

    3
  • 输入#3

    5
    0 0 0 0 35

    输出#3

    0
  • 输入#4

    5
    8 4 2 0 1

    输出#4

    801604029

说明/提示

For the first example, in the first second, the probability that player 11 will give the player 22 a biscuit is 12\frac{1}{2} , and the probability that player 22 will give the player 11 a biscuit is 12\frac{1}{2} . But anyway, the game will stop after exactly 11 second because only one player will occupy all biscuits after 11 second, so the answer is 11 .

首页