记录编号 |
324397 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOIP 2011]计算系数 |
最终得分 |
100 |
用户昵称 |
404 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.023 s |
提交时间 |
2016-10-18 07:43:42 |
内存使用 |
4.20 MiB |
显示代码纯文本
#include<iostream>
#include<algorithm>
#include<cstring>
#include<cmath>
#include<cstdio>
#include<queue>
#include<map>
#include<vector>
#include<set>
#define inf 0x7fffffff
#define ll long long
#define ull unsigned long long
#define fi first
#define se second
using namespace std;
ll a,b,k,n,m;
const int mod=10007;
int c[1010][1010];
ll pow(ll x,ll y)
{
ll res=1,tmp=x;
while(y){
if(y&1)res=res*tmp%mod;
tmp=tmp*tmp%mod;
y=y/2;
}return res;
}
int main()
{
freopen("factor.in","r",stdin);
freopen("factor.out","w",stdout);
cin>>a>>b>>k>>n>>m;
c[0][0]=1;
for(int i=1;i<=k;i++){
c[i][0]=1;c[i][i]=1;
for(int j=1;j<i;j++)
c[i][j]=(c[i-1][j-1]+c[i-1][j])%mod;
}
ll ans=c[k][m];ans=(ans*pow(a,n))%mod;ans=(ans*pow(b,m))%mod;
cout<<ans<<endl;
}