結果

問題 No.2071 Shift and OR
ユーザー MasKoaTSMasKoaTS
提出日時 2022-09-17 11:40:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 398 ms / 2,000 ms
コード長 1,038 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 127,152 KB
最終ジャッジ日時 2024-06-01 15:03:00
合計ジャッジ時間 9,762 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
86,628 KB
testcase_01 AC 137 ms
89,360 KB
testcase_02 AC 142 ms
91,016 KB
testcase_03 AC 215 ms
108,280 KB
testcase_04 AC 168 ms
99,720 KB
testcase_05 AC 296 ms
117,716 KB
testcase_06 AC 183 ms
103,864 KB
testcase_07 AC 151 ms
93,564 KB
testcase_08 AC 160 ms
95,080 KB
testcase_09 AC 173 ms
101,304 KB
testcase_10 AC 186 ms
103,812 KB
testcase_11 AC 323 ms
127,152 KB
testcase_12 AC 270 ms
122,500 KB
testcase_13 AC 244 ms
118,588 KB
testcase_14 AC 124 ms
86,308 KB
testcase_15 AC 244 ms
115,216 KB
testcase_16 AC 250 ms
116,828 KB
testcase_17 AC 310 ms
118,736 KB
testcase_18 AC 129 ms
87,256 KB
testcase_19 AC 367 ms
125,240 KB
testcase_20 AC 328 ms
115,812 KB
testcase_21 AC 398 ms
116,164 KB
testcase_22 AC 372 ms
117,656 KB
testcase_23 AC 163 ms
113,992 KB
testcase_24 AC 131 ms
89,756 KB
testcase_25 AC 144 ms
99,420 KB
testcase_26 AC 148 ms
101,168 KB
testcase_27 AC 126 ms
86,912 KB
testcase_28 AC 169 ms
117,472 KB
testcase_29 AC 168 ms
117,180 KB
testcase_30 AC 237 ms
119,268 KB
testcase_31 AC 169 ms
97,544 KB
testcase_32 AC 173 ms
100,844 KB
testcase_33 AC 181 ms
102,604 KB
testcase_34 AC 193 ms
105,288 KB
testcase_35 AC 203 ms
110,108 KB
testcase_36 AC 227 ms
118,176 KB
testcase_37 AC 188 ms
104,896 KB
testcase_38 AC 184 ms
102,920 KB
testcase_39 AC 171 ms
98,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools as iter
import collections as coll
import heapq as hq
import bisect as bis
from decimal import Decimal as dec
from functools import cmp_to_key
import math
import sys
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')
sys.setrecursionlimit(10 ** 6)
inp = sys.stdin.readline
input = lambda : inp().rstrip()
getN = lambda : int(inp())
getNs = lambda : map(int, inp().split())
getList = lambda :list(map(int, inp().split()))
getStrs = lambda n : [input() for _ in [0] * n]
def yexit(): print("Yes"); exit(0)
def nexit(): print("No"); exit(0)
pi = 3.141592653589793
mod = 1000000007
MOD = 998244353
INF = 4611686018427387903
dx = [1, 0, -1, 0];	dy = [0, 1, 0, -1]
#di = coll.defaultdict(int)


"""
Main Code
"""

n = getN()
a = getList()

if(n >= 16):
	print(65535)
	exit(0)

def shift(x):
	return (x >> 1) | ((x & 1) << 15)

st = set([0])
for k in a:
	bst = set([k])
	b = k
	for _ in [0]*16:
		b = shift(b)
		bst.add(b)
	nst = set([])
	for x in st:
		for y in bst:
			nst.add(x | y)
	st = set(nst)

print(max(st))
0