Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
57465 | wsad | J3 | C++ | 运行超时 | 60 | 1000 MS | 436 KB | 303 | 2022-10-04 11:26:36 |
#include<bits/stdc++.h> using namespace std; const int M=998244353; int f[100003]; int main(){ int n,x,y; cin>>n>>x>>y; for(int i=1;i<=x;++i) { if(i<n && i!=y) f[i]=1; for(int j=i/2;j;--j) if(i-j!=y && i-j<=n) f[i]=(f[i]+f[j])%M; } cout<<f[x]<<'\n'; return 0; }