結果

問題 No.2071 Shift and OR
ユーザー timitimi
提出日時 2022-09-17 00:41:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 213 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 604 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 100,736 KB
最終ジャッジ日時 2024-12-21 23:52:15
合計ジャッジ時間 5,225 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
60,672 KB
testcase_01 AC 51 ms
63,744 KB
testcase_02 AC 53 ms
66,432 KB
testcase_03 AC 94 ms
78,540 KB
testcase_04 AC 64 ms
71,680 KB
testcase_05 AC 129 ms
78,544 KB
testcase_06 AC 70 ms
73,344 KB
testcase_07 AC 58 ms
68,992 KB
testcase_08 AC 63 ms
69,760 KB
testcase_09 AC 71 ms
72,576 KB
testcase_10 AC 75 ms
74,240 KB
testcase_11 AC 146 ms
80,128 KB
testcase_12 AC 131 ms
78,168 KB
testcase_13 AC 121 ms
78,508 KB
testcase_14 AC 40 ms
59,648 KB
testcase_15 AC 102 ms
78,536 KB
testcase_16 AC 109 ms
78,336 KB
testcase_17 AC 144 ms
78,464 KB
testcase_18 AC 47 ms
63,744 KB
testcase_19 AC 170 ms
80,512 KB
testcase_20 AC 166 ms
80,256 KB
testcase_21 AC 213 ms
81,716 KB
testcase_22 AC 184 ms
79,928 KB
testcase_23 AC 70 ms
96,512 KB
testcase_24 AC 39 ms
61,568 KB
testcase_25 AC 53 ms
76,288 KB
testcase_26 AC 55 ms
79,360 KB
testcase_27 AC 38 ms
57,984 KB
testcase_28 AC 74 ms
100,608 KB
testcase_29 AC 74 ms
100,736 KB
testcase_30 AC 94 ms
78,556 KB
testcase_31 AC 64 ms
70,912 KB
testcase_32 AC 64 ms
70,912 KB
testcase_33 AC 69 ms
72,704 KB
testcase_34 AC 74 ms
74,624 KB
testcase_35 AC 75 ms
74,112 KB
testcase_36 AC 87 ms
78,336 KB
testcase_37 AC 69 ms
72,576 KB
testcase_38 AC 69 ms
72,448 KB
testcase_39 AC 70 ms
72,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int, input().split()))
if N>15:
  print(2**16-1)
  exit()
from collections import deque
D=[0]*(2**16)
D[0]=1
d=deque()
d.append(0)
def f(x):
  return x//2+(2**15)*(x%2)

for i in range(N):
  nd=deque()
  while d:
    now=d.popleft()
    a=A[i]
    nd.append(now)
    for j in range(16):
      dd=now|a
      if D[dd]==0:
        D[dd]=1
        nd.append(dd)
      a=f(a)
  d=nd

ans=0
for i in range(2**16):
  if D[i]==1:
    ans=max(ans,i)
print(ans)
        
  
0