結果

問題 No.2071 Shift and OR
ユーザー flygonflygon
提出日時 2022-09-16 22:08:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 213 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 126,040 KB
最終ジャッジ日時 2024-06-01 13:08:45
合計ジャッジ時間 6,169 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
63,224 KB
testcase_01 AC 61 ms
63,948 KB
testcase_02 AC 70 ms
65,928 KB
testcase_03 AC 104 ms
67,528 KB
testcase_04 AC 86 ms
66,532 KB
testcase_05 AC 147 ms
71,712 KB
testcase_06 AC 92 ms
66,772 KB
testcase_07 AC 76 ms
65,076 KB
testcase_08 AC 83 ms
66,744 KB
testcase_09 AC 86 ms
66,724 KB
testcase_10 AC 89 ms
66,960 KB
testcase_11 AC 149 ms
72,308 KB
testcase_12 AC 153 ms
73,348 KB
testcase_13 AC 141 ms
70,904 KB
testcase_14 AC 49 ms
60,976 KB
testcase_15 AC 122 ms
68,288 KB
testcase_16 AC 115 ms
68,428 KB
testcase_17 AC 154 ms
73,820 KB
testcase_18 AC 56 ms
62,896 KB
testcase_19 AC 178 ms
74,516 KB
testcase_20 AC 175 ms
74,812 KB
testcase_21 AC 213 ms
77,500 KB
testcase_22 AC 164 ms
75,952 KB
testcase_23 AC 173 ms
119,072 KB
testcase_24 AC 140 ms
87,796 KB
testcase_25 AC 153 ms
102,612 KB
testcase_26 AC 159 ms
103,856 KB
testcase_27 AC 139 ms
84,640 KB
testcase_28 AC 178 ms
125,504 KB
testcase_29 AC 175 ms
126,040 KB
testcase_30 AC 103 ms
67,888 KB
testcase_31 AC 88 ms
68,684 KB
testcase_32 AC 87 ms
69,088 KB
testcase_33 AC 90 ms
68,236 KB
testcase_34 AC 95 ms
67,608 KB
testcase_35 AC 95 ms
67,432 KB
testcase_36 AC 99 ms
67,820 KB
testcase_37 AC 96 ms
67,856 KB
testcase_38 AC 90 ms
68,560 KB
testcase_39 AC 89 ms
68,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
b = [0]*((1<<16)+10)

def f(x):
  return x//2 + pow(2,15)*(x%2)
b[0] = 1
for i in range(min(n, 20)):
  now = a[i]
  new = [0]*((1<<16)+10)
  new[0] = 1
  for j in range(20):
    tmp = f(now)
    for k in range((1<<16)+10):
      if b[k]:
        new[k|tmp] = 1
    now = tmp
  b = new[::1]
for i in range((1<<16)+10)[::-1]:
  if b[i]:
    print(i)
    exit()




0