結果

問題 No.2071 Shift and OR
ユーザー ytftytft
提出日時 2022-09-22 15:46:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 425 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 100,096 KB
最終ジャッジ日時 2024-12-22 04:54:09
合計ジャッジ時間 6,068 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
61,312 KB
testcase_01 AC 63 ms
62,336 KB
testcase_02 AC 75 ms
63,104 KB
testcase_03 AC 108 ms
63,872 KB
testcase_04 AC 84 ms
63,488 KB
testcase_05 AC 143 ms
65,664 KB
testcase_06 AC 91 ms
63,488 KB
testcase_07 AC 72 ms
62,848 KB
testcase_08 AC 83 ms
63,488 KB
testcase_09 AC 84 ms
63,232 KB
testcase_10 AC 85 ms
63,360 KB
testcase_11 AC 154 ms
66,048 KB
testcase_12 AC 150 ms
66,304 KB
testcase_13 AC 131 ms
65,792 KB
testcase_14 AC 53 ms
59,776 KB
testcase_15 AC 122 ms
64,896 KB
testcase_16 AC 117 ms
64,384 KB
testcase_17 AC 156 ms
66,176 KB
testcase_18 AC 60 ms
62,080 KB
testcase_19 AC 176 ms
66,560 KB
testcase_20 AC 174 ms
66,944 KB
testcase_21 AC 217 ms
69,376 KB
testcase_22 AC 191 ms
67,456 KB
testcase_23 AC 88 ms
96,000 KB
testcase_24 AC 52 ms
61,312 KB
testcase_25 AC 67 ms
76,160 KB
testcase_26 AC 71 ms
78,976 KB
testcase_27 AC 48 ms
58,112 KB
testcase_28 AC 89 ms
100,096 KB
testcase_29 AC 91 ms
99,968 KB
testcase_30 AC 106 ms
63,872 KB
testcase_31 AC 86 ms
64,384 KB
testcase_32 AC 86 ms
64,384 KB
testcase_33 AC 89 ms
64,384 KB
testcase_34 AC 97 ms
64,384 KB
testcase_35 AC 93 ms
63,872 KB
testcase_36 AC 99 ms
64,000 KB
testcase_37 AC 87 ms
64,384 KB
testcase_38 AC 87 ms
64,384 KB
testcase_39 AC 88 ms
64,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda:sys.stdin.readline().rstrip()
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