#!/usr/bin/python2 # -*- coding: utf-8 -*- # † from collections import defaultdict mod = 10**9 + 7 T = int(raw_input()) a, b, c, d, e = map(int, raw_input().split()) dp = [0] * 50000 dp[0] = 1 for t in xrange(T): ndp = [0] * 50000 for cur in xrange(50000): if dp[cur] == 0: continue ndp[cur + a + 60] += dp[cur] ndp[cur + a + 60] %= mod ndp[cur - a + 60] += dp[cur] ndp[cur - a + 60] %= mod ndp[cur + b + 60] += dp[cur] ndp[cur + b + 60] %= mod ndp[cur - b + 60] += dp[cur] ndp[cur - b + 60] %= mod ndp[cur + c + 60] += dp[cur] ndp[cur + c + 60] %= mod ndp[cur - c + 60] += dp[cur] ndp[cur - c + 60] %= mod dp = ndp res = 0 for r in xrange(max(0, d+T*60), e+T*60+1): res += dp[r] res %= mod print res