自然数的幂和

自然数的幂和_第1张图片

Input
1
3 3
output
36
#include 
using namespace std;
typedef long long LL;
const LL MOD = 1000000007;
const int N = 2005;
LL C[N][N],B[N],Inv[N],Tmp[N],n;
void Init(){
    //预处理组合数
    for(int i=0; i

 

你可能感兴趣的:(ACM笔记-5代数)