

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
長さ の整数列 があります。(添字が から始まることに注意)
を満たすすべての整数 について、次の問題を解いてください。
- を整数とする。, のとき、 の最大値を求めよ。 ただしここで はビットごとの論理和を表す。
制約
- 入力はすべて整数である。
入力
入力は以下の形式で標準入力から与えられる。
出力
行出力せよ。 行目には、 のときの上記の問題の答えを出力せよ。
入力例 1Copy
2 1 2 3 1
出力例 1Copy
3 4 5
のとき、 としてあり得る組合せは のみなので、答えは となります。
のとき、 としてあり得る組合せは です。 のとき、 となり、これが最大なので、答えは です。
のとき、 としてあり得る組合せは です。 のとき、 となり、これが最大なので、答えは です。
入力例 2Copy
3 10 71 84 33 6 47 23 25
出力例 2Copy
81 94 155 155 155 155 155
入力例 3Copy
4 75 26 45 72 81 47 97 97 2 2 25 82 84 17 56 32
出力例 3Copy
101 120 147 156 156 178 194 194 194 194 194 194 194 194 194
Score : points
Problem Statement
There is an integer sequence of length : . (Note that the sequence is -indexed.)
For every integer satisfying , solve the following problem:
- Let and be integers. Find the maximum value of where and . Here, denotes the bitwise OR.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print lines. In the -th line, print the answer of the problem above for .
Sample Input 1Copy
2 1 2 3 1
Sample Output 1Copy
3 4 5
For , the only possible pair of and is , so the answer is .
For , the possible pairs of and are . When , . This is the maximum value, so the answer is .
For , the possible pairs of and are . When , . This is the maximum value, so the answer is .
Sample Input 2Copy
3 10 71 84 33 6 47 23 25
Sample Output 2Copy
81 94 155 155 155 155 155
Sample Input 3Copy
4 75 26 45 72 81 47 97 97 2 2 25 82 84 17 56 32
Sample Output 3Copy
101 120 147 156 156 178 194 194 194 194 194 194 194 194 194