提交时间:2022-10-04 11:26:28

运行 ID: 57463

#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; }