301238: CF232B. Table
Memory Limit:256 MB
Time Limit:4 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Table
题意翻译
有一个 $n\times m$的矩阵,求使得每个 $n\times n$的矩阵中都有正好 $k$个点的方案数,方案数对 $1000000007$( $1e9+7$)取模。 $1\le n\le100,n\le m\le10^{18},0\le k\le n^2$题目描述
John Doe has an $ n×m $ table. John Doe can paint points in some table cells, not more than one point in one table cell. John Doe wants to use such operations to make each square subtable of size $ n×n $ have exactly $ k $ points. John Doe wondered, how many distinct ways to fill the table with points are there, provided that the condition must hold. As this number can be rather large, John Doe asks to find its remainder after dividing by $ 1000000007 $ $ (10^{9}+7) $ . You should assume that John always paints a point exactly in the center of some cell. Two ways to fill a table are considered distinct, if there exists a table cell, that has a point in one way and doesn't have it in the other.输入输出格式
输入格式
A single line contains space-separated integers $ n $ , $ m $ , $ k $ ( $ 1<=n<=100; n<=m<=10^{18}; 0<=k<=n^{2} $ ) — the number of rows of the table, the number of columns of the table and the number of points each square must contain. Please, do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the %I64d specifier.
输出格式
In a single line print a single integer — the remainder from dividing the described number of ways by $ 1000000007 $ $ (10^{9}+7) $ .
输入输出样例
输入样例 #1
5 6 1
输出样例 #1
45