Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
49274 | Ryan123 | 【AB-1】函数 | C++ | 解答错误 | 20 | 296 MS | 10140 KB | 553 | 2022-05-05 13:25:15 |
#include <bits/stdc++.h> using namespace std; int n,K,k1,k2; int f[51][40001]; const int Mod=998344353; int main() { cin>>n>>K>>k1>>k2; long long rec=(n*10*K); f[2][int(pow(k1,n))*k1+int(pow(k1,n-1))*k2+rec]=1; for(int i=3; i<=n+1; i++) { long long a=int(pow(k1,n-i+1))%11; for(int j=-rec; j<=rec; j++) { for(int k=-K; k<=K; k++) if(j-a*k+rec>=0) { f[i][j+rec]+=f[i-1][j-a*k+rec]; f[i][j+rec]%=Mod; } } } cout<<f[n+1][k2+rec]<<'\n'; return 0; }