#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; #define INT_MAX_VALUE 2147483647 #define LONG_LONG_MAX_VALUE 9223372036854775807 template T mymax(T a,T b){ if(a>=b) return a; return b; } template T mymin(T a,T b){ if(a<=b) return a; return b; } // //long long gcd(long long a, long long b){ // if(a:降順(大きいものから順番) //プライオリティキューの場合は > で、top()すると値の小さいものがとれる } //第1条件 return (riLeft.x) < (riRight.x); } }; // ////kruskal //struct edge{ // int u; // int v; // int cost; //}; // //bool comp(edge& e1,edge& e2){ // return e1.cost < e2.cost; //} // //edge es[1000]; // //long long kruskal(int V,int E){//V:頂点数,E:辺数 // sort(es,es+E,comp); // init(V); // long long res = 0; // for(int i=0;i prime_f(long long n){ // mapres; // for(int i=2;i*i<=n;i++){ // while(n%i==0){ // ++res[i]; // n/=i; // } // } // if(n!=1)res[n]=1; // return res; //} int ppar[100000]; //親 int rrank[100000];//木の深さ void init(int n){ for(int i=1;i<=n;i++){ ppar[i]=i; rrank[i]=0; } } int find(int x){ if(ppar[x]==x){ return x; }else{ return ppar[x]=find(ppar[x]); } } void unite(int x,int y){ x=find(x); y=find(y); if(x==y){ return; } if(rrank[x]> x >> y; //テスト用 //ifstream ifs( "1_06.txt" ); //ifs >> a; //ここから //入力高速化 ios::sync_with_stdio(false); cin.tie(0); int T; cin >> T; int a,b,c,d,e; cin >> a >> b >> c >> d >> e; for(int i=0;i<=500;i++){ for(int j=0;j<=20000;j++){ dp[i][j]=0; } } dp[0][10000]=1; for(int i=1;i<=T;i++){ for(int j=0;j<=20000;j++){ if(dp[i-1][j]!=0){ dp[i][j-a]+=dp[i-1][j]; dp[i][j-a]%=1000000007; dp[i][j+a]+=dp[i-1][j]; dp[i][j+a]%=1000000007; dp[i][j-b]+=dp[i-1][j]; dp[i][j-b]%=1000000007; dp[i][j+b]+=dp[i-1][j]; dp[i][j+b]%=1000000007; dp[i][j-c]+=dp[i-1][j]; dp[i][j-c]%=1000000007; dp[i][j+c]+=dp[i-1][j]; dp[i][j+c]%=1000000007; } } } long long ans=0; for(int i=d+10000;i<=e+10000;i++){ ans+=dp[T][i]; ans%=1000000007; } cout << ans << endl; //ここまで //cout << "debug" << endl; //cout << "ans" << endl;改行含む //printf("%.0f\n",ans);//小数点以下表示なし //printf("%.7f\n",p); //printf("%f\n",pow(2,ans.size())); return 0; }