#abc080c. [abc080_c]Shopping Street

[abc080_c]Shopping Street

Problem Statement

Joisino is planning to open a shop in a shopping street.

Each of the five weekdays is divided into two periods, the morning and the evening. For each of those ten periods, a shop must be either open during the whole period, or closed during the whole period. Naturally, a shop must be open during at least one of those periods.

There are already NN stores in the street, numbered 11 through NN.

You are given information of the business hours of those shops, Fi,j,kF_{i,j,k}. If Fi,j,k=1F_{i,j,k}=1, Shop ii is open during Period kk on Day jj (this notation is explained below); if Fi,j,k=0F_{i,j,k}=0, Shop ii is closed during that period. Here, the days of the week are denoted as follows. Monday: Day 11, Tuesday: Day 22, Wednesday: Day 33, Thursday: Day 44, Friday: Day 55. Also, the morning is denoted as Period 11, and the afternoon is denoted as Period 22.

Let cic_i be the number of periods during which both Shop ii and Joisino's shop are open. Then, the profit of Joisino's shop will be P1,c1+P2,c2+...+PN,cNP_{1,c_1}+P_{2,c_2}+...+P_{N,c_N}.

Find the maximum possible profit of Joisino's shop when she decides whether her shop is open during each period, making sure that it is open during at least one period.

Constraints

  • 1N1001≤N≤100
  • 0Fi,j,k10≤F_{i,j,k}≤1
  • For every integer ii such that 1iN1≤i≤N, there exists at least one pair (j,k)(j,k) such that Fi,j,k=1F_{i,j,k}=1.
  • \-107Pi,j107\-10^7≤P_{i,j}≤10^7
  • All input values are integers.

Input

Input is given from Standard Input in the following format:

NN F1,1,1F_{1,1,1} F1,1,2F_{1,1,2} ...... F1,5,1F_{1,5,1} F1,5,2F_{1,5,2} :: FN,1,1F_{N,1,1} FN,1,2F_{N,1,2} ...... FN,5,1F_{N,5,1} FN,5,2F_{N,5,2} P1,0P_{1,0} ...... P1,10P_{1,10} :: PN,0P_{N,0} ...... PN,10P_{N,10}

Output

Print the maximum possible profit of Joisino's shop.


Sample Input 1

1
1 1 0 1 0 0 0 1 0 1
3 4 5 6 7 8 9 -2 -3 4 -2

Sample Output 1

8

If her shop is open only during the periods when Shop 11 is opened, the profit will be 88, which is the maximum possible profit.


Sample Input 2

2
1 1 1 1 1 0 0 0 0 0
0 0 0 0 0 1 1 1 1 1
0 -2 -2 -2 -2 -2 -1 -1 -1 -1 -1
0 -2 -2 -2 -2 -2 -1 -1 -1 -1 -1

Sample Output 2

-2

Note that a shop must be open during at least one period, and the profit may be negative.


Sample Input 3

3
1 1 1 1 1 1 0 0 1 1
0 1 0 1 1 1 1 0 1 0
1 0 1 1 0 1 0 1 0 1
-8 6 -2 -8 -8 4 8 7 -6 2 2
-9 2 0 1 7 -5 0 -2 -6 5 5
6 -6 7 -9 6 -5 8 0 -9 -7 -7

Sample Output 3

23