atcoder#TENKA12017D. IntegerotS
IntegerotS
Score : points
Problem Statement
Seisu-ya, a store specializing in non-negative integers, sells non-negative integers. The -th integer is and has a utility of . There may be multiple equal integers with different utilities.
Takahashi will buy some integers in this store. He can buy a combination of integers whose bitwise OR is less than or equal to . He wants the sum of utilities of purchased integers to be as large as possible.
Find the maximum possible sum of utilities of purchased integers.
Constraints
- All input values are integers.
Inputs
Input is given from Standard Input in the following format:
:
Outputs
Print the maximum possible sum of utilities of purchased integers.
3 5
3 3
4 4
2 5
8
Buy and to achieve the maximum possible total utility, .
3 6
3 3
4 4
2 5
9
Buy and to achieve the maximum possible total utility, .
7 14
10 5
7 4
11 4
9 8
3 6
6 2
8 9
32