New Year and Fireworks

One tradition of welcoming the New Year is launching fireworks into the sky. Usually a launched firework flies vertically upward for some period of time, then explodes, splitting into several parts flying in different directions. Sometimes those parts also explode after some period of time, splitting into even more parts, and so on.

Limak, who lives in an infinite grid, has a single firework. The behaviour of the firework is described with a recursion depth n and a duration for each level of recursion t 1, t 2, …, t n. Once Limak launches the firework in some cell, the firework starts moving upward. After covering t 1 cells (including the starting cell), it explodes and splits into two parts, each moving in the direction changed by 45 degrees (see the pictures below for clarification). So, one part moves in the top-left direction, while the other one moves in the top-right direction. Each part explodes again after covering t 2 cells, splitting into two parts moving in directions again changed by 45 degrees. The process continues till the n-th level of recursion, when all 2 n - 1 existing parts explode and disappear without creating new parts. After a few levels of recursion, it’s possible that some parts will be at the same place and at the same time — it is allowed and such parts do not crash.

Before launching the firework, Limak must make sure that nobody stands in cells which will be visited at least once by the firework. Can you count the number of those cells?

Input

The first line of the input contains a single integer n (1 ≤ n ≤ 30) — the total depth of the recursion.

The second line contains n integers t 1, t 2, …, t n (1 ≤ t i ≤ 5). On the i-th level each of 2 i - 1 parts will cover t i cells before exploding.

Output

Print one integer, denoting the number of cells which will be visited at least once by any part of the firework.

Examples

input

4
4 2 2 3

output

39

input

6
1 1 1 1 1 3

output

85

input

1
3

output

3

Note

For the first sample, the drawings below show the situation after each level of recursion. Limak launched the firework from the bottom-most red cell. It covered t 1 = 4 cells (marked red), exploded and divided into two parts (their further movement is marked green). All explosions are marked with an ‘X’ character. On the last drawing, there are 4 red, 4 green, 8 orange and 23 pink cells. So, the total number of visited cells is 4 + 4 + 8 + 23 = 39.

For the second sample, the drawings below show the situation after levels 4, 5 and 6. The middle drawing shows directions of all parts that will move in the next level.

Solution:

#include <bits/stdc++.h>

using namespace std;

const int dx[8] = {-1, -1, 0, 1, 1, 1, 0, -1};
const int dy[8] = {0, 1, 1, 1, 0, -1, -1, -1};

const int MAX = 333;

int a[444][444][13], new_a[444][444][13], ever[444][444];

int main() {
int tt;
scanf("%d", &tt);
memset(ever, 0, sizeof(ever));
memset(a, 0, sizeof(a));
a[MAX / 2 + 1][MAX / 2][0] = 1;
while (tt--) {
int cnt;
scanf("%d", &cnt);
while (cnt--) {
memset(new_a, 0, sizeof(new_a));
for (int i = 0; i < MAX; i++) {
        for (int j = 0; j < MAX; j++) {
          for (int d = 0; d < 8; d++) {
            if (a[i][j][d]) { 
              int xk = i + dx[d];
              int yk = j + dy[d];
              if (xk >= 0 && yk >= 0 && xk < MAX && yk < MAX) {
                new_a[xk][yk][d] = 1;
              }
            }
          }
        }
      }
      for (int i = 0; i < MAX; i++) {
        for (int j = 0; j < MAX; j++) {
          for (int d = 0; d < 8; d++) {
            a[i][j][d] = new_a[i][j][d];
            ever[i][j] |= a[i][j][d];
          }
        }
      }
    }
    memset(new_a, 0, sizeof(new_a));
    for (int i = 0; i < MAX; i++) {
      for (int j = 0; j < MAX; j++) {
        for (int d = 0; d < 8; d++) {
          if (a[i][j][d]) { 
            new_a[i][j][(d + 1) % 8] = 1;
            new_a[i][j][(d + 7) % 8] = 1;
          }
        }
      }
    }
    for (int i = 0; i < MAX; i++) {
      for (int j = 0; j < MAX; j++) {
        for (int d = 0; d < 8; d++) {
          a[i][j][d] = new_a[i][j][d];
        }
      }
    }
  }
  int ans = 0;
  for (int i = 0; i < MAX; i++) {
    for (int j = 0; j < MAX; j++) {
      ans += ever[i][j];
    }
  }
  printf("%d\n", ans);
  return 0;
}