시간 제한메모리 제한제출정답맞힌 사람정답 비율
6 초 512 MB62271436.842%

문제

Little Nikola has recently learned a multiplication table. To try to continue learning, he came up with the following task.

He made a table of size R×S. In each field of the table he wrote an integer value and asked himself: How many possible ways are there to get from the upper left corner to the lower right corner of the table by moving each step to one field right or down, so that a product of all the numbers on the path (including the initial and the final field) is at least N?

Since currently he has no time, he has asked you for help. Since the required number of ways can be quite large, just print its remainder of division by 109 + 7.

입력

In the first line there are integer numbers R, S (1 ≤ R, S ≤ 300) and N (1 ≤ N ≤ 106).

In the next R lines there are S integer numbers between 1 and 106 which denotes the numbers written in each field of the table.

출력

In the only line print the remainder of the required number of the ways modulo 109 + 7.

예제 입력 1

2 3 200
2 3 4
5 6 7

예제 출력 1

2

There are three possible ways:

  • 2->3->4->7 - total product 168
  • 2->3->6->7 - total product 252
  • 2->5->6->7 - total product 420

예제 입력 2

3 3 90
2 1 1
45 1 1
1 1 1

예제 출력 2

3

예제 입력 3

2 5 3000
1 2 3 4 5
6 7 8 9 10

예제 출력 3

3