結果

問題 No.2071 Shift and OR
ユーザー ytftytft
提出日時 2022-09-22 15:45:49
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 449 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 106,336 KB
最終ジャッジ日時 2024-06-01 17:57:12
合計ジャッジ時間 5,580 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
62,608 KB
testcase_01 AC 56 ms
62,568 KB
testcase_02 AC 64 ms
63,672 KB
testcase_03 AC 97 ms
64,172 KB
testcase_04 AC 76 ms
64,136 KB
testcase_05 AC 141 ms
65,756 KB
testcase_06 AC 85 ms
64,520 KB
testcase_07 AC 70 ms
63,960 KB
testcase_08 AC 75 ms
63,612 KB
testcase_09 AC 78 ms
63,676 KB
testcase_10 AC 82 ms
64,920 KB
testcase_11 AC 142 ms
67,032 KB
testcase_12 AC 147 ms
66,532 KB
testcase_13 AC 130 ms
65,680 KB
testcase_14 AC 48 ms
60,384 KB
testcase_15 AC 110 ms
64,872 KB
testcase_16 AC 107 ms
64,880 KB
testcase_17 AC 145 ms
66,252 KB
testcase_18 AC 54 ms
62,864 KB
testcase_19 AC 169 ms
68,544 KB
testcase_20 AC 167 ms
67,068 KB
testcase_21 AC 204 ms
70,704 KB
testcase_22 AC 176 ms
68,828 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 96 ms
65,208 KB
testcase_31 AC 77 ms
64,800 KB
testcase_32 AC 77 ms
64,760 KB
testcase_33 AC 83 ms
65,088 KB
testcase_34 AC 89 ms
65,296 KB
testcase_35 AC 89 ms
65,056 KB
testcase_36 AC 97 ms
64,232 KB
testcase_37 AC 83 ms
65,180 KB
testcase_38 AC 80 ms
65,776 KB
testcase_39 AC 89 ms
66,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda:sys.stdin.readline().rstrip()
unit=2.18169499062491237350
N=int(input())
A=list(map(int,input().split()))
if N>15:
	print(2**16-1)
else:
	pos=[i==0 for i in range(2**16)]
	for i in A:
		temp=i
		newpos=[i==0 for i in range(2**16)]
		for k in range(16):
			temp=(temp//2)+(2**15)*(temp%2)
			for j in range(2**16):
				if pos[j]:
					newpos[j|temp]=1
		pos=newpos
for i in range(2**16-1,-1,-1):
	if pos[i]:
		print(i)
		break
0