#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include using namespace std; const int MOD=1e9+7; template struct BIT{ private: vector A; const int n; public: BIT(int _n) : A(_n+1,0), n(_n){} T sum(int i){ T s=0; while(i>0){ s=(s+A[i])%MOD; i-=i&-i; } return s; } T sum(int i,int j){ return (sum(j)-sum(i-1)+MOD)%MOD; } void add(int i,T x){ while(i<=n){ A[i]=(A[i]+x)%MOD; i+=i&-i; } } }; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); int n,d,k; cin>>n>>d>>k; vector> B(n+1,BIT(k)); for(int j=1;j<=d;j++) B[1].add(j,1); for(int i=2;i<=n;i++){ for(int j=i;j<=k;j++){ B[i].add(j,B[i-1].sum(max(j-d,1),j-1)); } } cout<