結果

問題 No.2071 Shift and OR
ユーザー rlangevinrlangevin
提出日時 2023-01-27 22:02:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 758 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 110,080 KB
最終ジャッジ日時 2024-06-28 07:05:39
合計ジャッジ時間 7,978 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
73,856 KB
testcase_01 AC 95 ms
76,544 KB
testcase_02 AC 106 ms
78,720 KB
testcase_03 AC 140 ms
85,888 KB
testcase_04 AC 122 ms
83,840 KB
testcase_05 WA -
testcase_06 AC 130 ms
85,504 KB
testcase_07 AC 111 ms
80,640 KB
testcase_08 AC 118 ms
80,256 KB
testcase_09 AC 132 ms
86,016 KB
testcase_10 AC 134 ms
85,632 KB
testcase_11 WA -
testcase_12 AC 167 ms
84,608 KB
testcase_13 WA -
testcase_14 AC 63 ms
62,976 KB
testcase_15 AC 145 ms
85,504 KB
testcase_16 AC 148 ms
87,680 KB
testcase_17 WA -
testcase_18 AC 89 ms
76,288 KB
testcase_19 WA -
testcase_20 AC 167 ms
84,736 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def shift(x):
    return ((x % 2) << 15) + x//2

N =int(input())
A = list(map(int, input().split()))
dp = [0] * (N + 1)
L = []
for i in range(N):
    p = A[i]
    for j in range(16):
        v = p
        for a in L:
            v |= a
        if v not in L:
            L.append(p)
            break            
        p = shift(p)
        
dp = [0] * (1 << 16)
dp[0] = 1 
M = len(L)
pre = set([0])
for i in range(M):
    S = set()
    v = A[i]
    for s in range(1 << 16):
        for j in range(16):
            if dp[s]:
                S.add(s|v)
            v = shift(v)
    for b in S:
        dp[b] = 1
    for c in pre:
        dp[c] = 0
    pre, S = S, pre

for i in range(2 ** 16 - 1, -1, -1):
    if dp[i]:
        print(i)
        break        
0