跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2737. Numbers

    ID: 2743 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 6 上传者: 标签>组合数学动态规划数学提高难度共享题库Codeforces英文题面题目来源题面语言

Numbers

题目描述

B. Numbers
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Furik loves writing all sorts of problems, especially such that he can't solve himself. You've got one of his problems, the one Furik gave to Rubik. And Rubik asks you to solve it.

There is integer n and array a, consisting of ten integers, indexed by numbers from 0 to 9. Your task is to count the number of positive integers with the following properties:

  • the number's length does not exceed n;
  • the number doesn't have leading zeroes;
  • digit i (0≤i≤9) occurs in the number at least a[i] times.
Input

The first line contains integer n (1≤n≤100). The next line contains 10 integers a[0], a[1], ..., a[9] (0≤a[i]≤100) − elements of array a. The numbers are separated by spaces.

Output

On a single line print the remainder of dividing the answer to the problem by 1000000007 (109+7).

Examples
Input
1
0 0 0 0 0 0 0 0 0 1
Output
1
Input
2
1 1 0 0 0 0 0 0 0 0
Output
1
Input
3
1 1 0 0 0 0 0 0 0 0
Output
36
Note

In the first sample number 9 meets the requirements.

In the second sample number 10 meets the requirements.

In the third sample numbers 10, 110, 210, 120, 103 meet the requirements. There are other suitable numbers, 36 in total.


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 2404 题。保留原作者与原赛事署名。