結果

問題 No.2071 Shift and OR
ユーザー ytftytft
提出日時 2022-09-22 15:46:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 425 bytes
コンパイル時間 504 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 100,352 KB
最終ジャッジ日時 2024-06-01 17:57:42
合計ジャッジ時間 5,681 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
61,696 KB
testcase_01 AC 56 ms
62,336 KB
testcase_02 AC 63 ms
63,616 KB
testcase_03 AC 95 ms
63,872 KB
testcase_04 AC 79 ms
63,872 KB
testcase_05 AC 138 ms
65,920 KB
testcase_06 AC 83 ms
63,488 KB
testcase_07 AC 67 ms
63,232 KB
testcase_08 AC 78 ms
63,744 KB
testcase_09 AC 76 ms
63,616 KB
testcase_10 AC 82 ms
63,744 KB
testcase_11 AC 142 ms
66,432 KB
testcase_12 AC 144 ms
66,432 KB
testcase_13 AC 128 ms
65,664 KB
testcase_14 AC 50 ms
60,160 KB
testcase_15 AC 113 ms
64,640 KB
testcase_16 AC 108 ms
64,512 KB
testcase_17 AC 146 ms
66,432 KB
testcase_18 AC 57 ms
61,952 KB
testcase_19 AC 172 ms
66,816 KB
testcase_20 AC 167 ms
67,072 KB
testcase_21 AC 207 ms
69,632 KB
testcase_22 AC 184 ms
67,584 KB
testcase_23 AC 78 ms
96,640 KB
testcase_24 AC 46 ms
61,440 KB
testcase_25 AC 59 ms
76,288 KB
testcase_26 AC 61 ms
78,976 KB
testcase_27 AC 43 ms
58,112 KB
testcase_28 AC 80 ms
100,352 KB
testcase_29 AC 80 ms
100,096 KB
testcase_30 AC 98 ms
64,000 KB
testcase_31 AC 79 ms
64,768 KB
testcase_32 AC 79 ms
64,384 KB
testcase_33 AC 84 ms
64,512 KB
testcase_34 AC 86 ms
64,384 KB
testcase_35 AC 88 ms
64,128 KB
testcase_36 AC 93 ms
64,384 KB
testcase_37 AC 84 ms
64,384 KB
testcase_38 AC 80 ms
64,640 KB
testcase_39 AC 81 ms
65,280 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