Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
57463 | 陈可堃 | J3 | C++ | 运行超时 | 25 | 1000 MS | 264 KB | 392 | 2022-10-04 11:26:28 |
#include <bits/stdc++.h> #define endl '\n' using namespace std; int n,x,y,c; void dfs(int s,int l){ for(int i=max(1,x-s);i<=min(n,s);i++){ if(i!=y){ s-=i; if(s==0)c=(c+1)%998244353; else dfs(s,i); s+=i; } } } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); cin >> n >> x >> y; dfs(x,1); cout << c << endl; return 0; }