Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
52792 | AK2022071321 | 数学,很美妙吧 | C++ | 运行超时 | 0 | 1000 MS | 320 KB | 331 | 2022-07-20 11:58:04 |
#include <bits/stdc++.h> using namespace std; int n,k,m,ans; void dfs(int t,int tot,int cnt,int x) { if(t==k-1) { ans+=tot+pow(n-cnt,m); return; } for(int i=x; i<n-cnt-k; i++) { dfs(t+1,tot+pow(i,m),cnt+i,i); } } int main() { cin>>n>>k>>m; dfs(0,0,0,1); cout<<ans; return 0; }