#ARC058C. [ARC058E] 和風いろはちゃん

[ARC058E] 和風いろはちゃん

Score : 700700 points

Problem Statement

Haiku is a short form of Japanese poetry. A Haiku consists of three phrases with 5, 7 and 5 syllables, in this order.

Iroha is looking for X,Y,Z-Haiku (defined below) in integer sequences.

Consider all integer sequences of length NN whose elements are between 11 and 1010, inclusive. Out of those 10N10^N sequences, how many contain an X,Y,ZX,Y,Z-Haiku?

Here, an integer sequence a0,a1,...,aN1a_0, a_1, ..., a_{N-1} is said to contain an X,Y,Z-Haiku if and only if there exist four indices x,y,z,w(0x<y<z<wN)x, y, z, w (0 \leq x < y < z < w \leq N) such that all of the following are satisfied:

  • ax+ax+1+...+ay1=Xa_x + a_{x+1} + ... + a_{y-1} = X
  • ay+ay+1+...+az1=Ya_y + a_{y+1} + ... + a_{z-1} = Y
  • az+az+1+...+aw1=Za_z + a_{z+1} + ... + a_{w-1} = Z

Since the answer can be extremely large, print the number modulo 109+710^9+7.

Constraints

  • 3N403 \leq N \leq 40
  • 1X51 \leq X \leq 5
  • 1Y71 \leq Y \leq 7
  • 1Z51 \leq Z \leq 5

Input

The input is given from Standard Input in the following format:

NN XX YY ZZ

Output

Print the number of the sequences that contain an X,Y,ZX,Y,Z-Haiku, modulo 109+710^9+7.

3 5 7 5
1

Here, the only sequence that contains a 5,7,55,7,5-Haiku is [5,7,5][5, 7, 5].

4 5 7 5
34
37 4 2 3
863912418
40 5 7 5
562805100