CF553A.Kyoya and Colored Balls

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Kyoya Ootori has a bag with nn colored balls that are colored with kk different colors. The colors are labeled from 11 to kk . Balls of the same color are indistinguishable. He draws balls from the bag one by one until the bag is empty. He noticed that he drew the last ball of color ii before drawing the last ball of color i+1i+1 for all ii from 11 to k1k-1 . Now he wonders how many different ways this can happen.

输入格式

The first line of input will have one integer kk ( 1<=k<=10001<=k<=1000 ) the number of colors.

Then, kk lines will follow. The ii -th line will contain cic_{i} , the number of balls of the ii -th color ( 1<=ci<=10001<=c_{i}<=1000 ).

The total number of balls doesn't exceed 1000.

输出格式

A single integer, the number of ways that Kyoya can draw the balls from the bag as described in the statement, modulo 10000000071000000007 .

输入输出样例

  • 输入#1

    3
    2
    2
    1
    

    输出#1

    3
    
  • 输入#2

    4
    1
    2
    3
    4
    

    输出#2

    1680
    

说明/提示

In the first sample, we have 2 balls of color 1, 2 balls of color 2, and 1 ball of color 3. The three ways for Kyoya are:

<br></br>1 2 1 2 3<br></br>1 1 2 2 3<br></br>2 1 1 2 3<br></br>

首页