結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
61,184 KB
testcase_01 AC 58 ms
61,952 KB
testcase_02 AC 72 ms
63,104 KB
testcase_03 AC 100 ms
64,000 KB
testcase_04 AC 78 ms
63,360 KB
testcase_05 AC 140 ms
65,152 KB
testcase_06 AC 89 ms
63,488 KB
testcase_07 AC 66 ms
62,592 KB
testcase_08 AC 70 ms
63,232 KB
testcase_09 AC 74 ms
63,232 KB
testcase_10 AC 75 ms
63,104 KB
testcase_11 AC 135 ms
65,664 KB
testcase_12 AC 137 ms
66,432 KB
testcase_13 AC 127 ms
65,408 KB
testcase_14 AC 50 ms
59,392 KB
testcase_15 AC 111 ms
64,256 KB
testcase_16 AC 102 ms
64,512 KB
testcase_17 AC 142 ms
65,792 KB
testcase_18 AC 57 ms
61,568 KB
testcase_19 AC 162 ms
66,432 KB
testcase_20 AC 162 ms
66,816 KB
testcase_21 AC 207 ms
69,248 KB
testcase_22 AC 175 ms
67,456 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 100 ms
64,000 KB
testcase_31 AC 77 ms
64,128 KB
testcase_32 AC 78 ms
64,128 KB
testcase_33 AC 91 ms
64,128 KB
testcase_34 AC 85 ms
64,256 KB
testcase_35 AC 87 ms
64,128 KB
testcase_36 AC 91 ms
64,000 KB
testcase_37 AC 81 ms
63,872 KB
testcase_38 AC 79 ms
64,384 KB
testcase_39 AC 83 ms
65,024 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