2140: A Famous Stone Collector

内存限制:128 MB 时间限制:10.000 S
评测方式:文本比较 命题人:
提交:1 解决:1

题目描述

Mr. B loves to play with colorful stones. There are n colors of stones in his collection. Two stones with the same color are indistinguishable. Mr. B would like to select some stones and arrange them in line to form a beautiful pattern. After several arrangements he finds it very hard for him to enumerate all the patterns. So he asks you to write a program to count the number of different possible patterns.
Two patterns are considered different, if and only if they have different number of stones or have different colors on at least one position.

输入

Each test case starts with a line containing an integer n indicating the kinds of stones Mr. B have. Following this is a line containing n integers - the number of available stones of each color respectively. All the input numbers will be nonnegative and no more than 100.

输出

For each test case, display a single line containing the case number and the number of different patterns Mr. B can make with these stones, modulo 1,000,000,007, which is a prime number.

样例输入 复制

3
1 1 1
2
1 2

样例输出 复制

Case 1: 15
Case 2: 8