結果

問題 No.2071 Shift and OR
ユーザー とりゐとりゐ
提出日時 2022-09-16 21:30:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 101,712 KB
最終ジャッジ日時 2024-06-01 11:59:57
合計ジャッジ時間 5,538 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
63,512 KB
testcase_01 AC 65 ms
62,328 KB
testcase_02 AC 74 ms
63,296 KB
testcase_03 AC 107 ms
65,504 KB
testcase_04 AC 87 ms
65,080 KB
testcase_05 AC 142 ms
67,124 KB
testcase_06 AC 93 ms
64,692 KB
testcase_07 AC 77 ms
64,720 KB
testcase_08 AC 85 ms
64,876 KB
testcase_09 AC 87 ms
65,216 KB
testcase_10 AC 90 ms
63,896 KB
testcase_11 AC 146 ms
68,276 KB
testcase_12 AC 149 ms
67,052 KB
testcase_13 AC 139 ms
67,448 KB
testcase_14 AC 50 ms
59,376 KB
testcase_15 AC 119 ms
65,632 KB
testcase_16 AC 116 ms
66,384 KB
testcase_17 AC 156 ms
67,604 KB
testcase_18 AC 64 ms
63,192 KB
testcase_19 AC 176 ms
68,856 KB
testcase_20 AC 171 ms
67,816 KB
testcase_21 AC 206 ms
70,404 KB
testcase_22 AC 189 ms
70,636 KB
testcase_23 AC 83 ms
97,424 KB
testcase_24 AC 45 ms
62,056 KB
testcase_25 AC 59 ms
77,516 KB
testcase_26 AC 62 ms
79,808 KB
testcase_27 AC 43 ms
59,320 KB
testcase_28 AC 85 ms
100,488 KB
testcase_29 AC 84 ms
101,712 KB
testcase_30 AC 106 ms
64,936 KB
testcase_31 AC 90 ms
65,424 KB
testcase_32 AC 89 ms
65,372 KB
testcase_33 AC 91 ms
65,072 KB
testcase_34 AC 98 ms
65,108 KB
testcase_35 AC 97 ms
65,564 KB
testcase_36 AC 105 ms
64,320 KB
testcase_37 AC 94 ms
65,032 KB
testcase_38 AC 92 ms
64,780 KB
testcase_39 AC 92 ms
66,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
m=1<<16
if n>=16:
  print(m-1)
  exit()

def shift(x):
  if x%2==1:
    return (1<<15)+x//2
  else:
    return x//2

ok=[0]*m
ok[0]=1

for ai in a:
  nok=[0]*m
  for _ in range(20):
    ai=shift(ai)
    for j in range(m):
      if ok[j]:
        nok[j|ai]=1
  
  ok=nok
ans=0
for i in range(m):
  if ok[i]:
    ans=i

print(ans)
0