結果

問題 No.2071 Shift and OR
ユーザー flygonflygon
提出日時 2022-09-16 22:08:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 125,896 KB
最終ジャッジ日時 2024-12-21 20:54:46
合計ジャッジ時間 6,330 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
61,696 KB
testcase_01 AC 64 ms
63,488 KB
testcase_02 AC 74 ms
65,280 KB
testcase_03 AC 108 ms
66,688 KB
testcase_04 AC 87 ms
66,048 KB
testcase_05 AC 153 ms
69,760 KB
testcase_06 AC 96 ms
65,664 KB
testcase_07 AC 78 ms
64,768 KB
testcase_08 AC 87 ms
66,048 KB
testcase_09 AC 88 ms
66,048 KB
testcase_10 AC 93 ms
65,664 KB
testcase_11 AC 156 ms
72,576 KB
testcase_12 AC 161 ms
72,576 KB
testcase_13 AC 143 ms
70,656 KB
testcase_14 AC 50 ms
59,648 KB
testcase_15 AC 126 ms
67,968 KB
testcase_16 AC 123 ms
67,840 KB
testcase_17 AC 169 ms
72,448 KB
testcase_18 AC 62 ms
62,848 KB
testcase_19 AC 186 ms
73,728 KB
testcase_20 AC 184 ms
74,112 KB
testcase_21 AC 221 ms
76,928 KB
testcase_22 AC 176 ms
75,392 KB
testcase_23 AC 184 ms
119,040 KB
testcase_24 AC 148 ms
86,656 KB
testcase_25 AC 159 ms
101,632 KB
testcase_26 AC 167 ms
103,808 KB
testcase_27 AC 147 ms
83,072 KB
testcase_28 AC 189 ms
125,896 KB
testcase_29 AC 183 ms
125,440 KB
testcase_30 AC 109 ms
66,688 KB
testcase_31 AC 90 ms
66,944 KB
testcase_32 AC 92 ms
67,200 KB
testcase_33 AC 95 ms
67,456 KB
testcase_34 AC 100 ms
67,456 KB
testcase_35 AC 103 ms
66,944 KB
testcase_36 AC 109 ms
66,560 KB
testcase_37 AC 96 ms
67,328 KB
testcase_38 AC 93 ms
66,816 KB
testcase_39 AC 94 ms
67,456 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