結果

問題 No.2071 Shift and OR
ユーザー yosakayosaka
提出日時 2022-09-16 23:45:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 457 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 19,280 KB
最終ジャッジ日時 2024-06-01 14:26:50
合計ジャッジ時間 38,533 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 498 ms
19,280 KB
testcase_01 AC 736 ms
12,336 KB
testcase_02 AC 1,217 ms
12,208 KB
testcase_03 AC 1,792 ms
12,336 KB
testcase_04 AC 1,469 ms
12,332 KB
testcase_05 TLE -
testcase_06 AC 1,559 ms
12,200 KB
testcase_07 AC 1,251 ms
12,340 KB
testcase_08 AC 1,440 ms
12,452 KB
testcase_09 AC 1,469 ms
12,208 KB
testcase_10 AC 1,459 ms
12,196 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 275 ms
12,288 KB
testcase_15 AC 1,914 ms
12,336 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 727 ms
12,208 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
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 #

N = int(input())
A = list(map(int, input().split()))
ans = 0

if N >= 16:
    print(2**16 - 1)
    exit()


def shift(x):
    return x // 2 + pow(2, 15) * (x % 2)


M = 1 << 16
dp = [False] * M
dp[0] = True
for a in A:
    ndp = [False] * M
    now = a
    for _ in range(16):
        for s in range(M):
            ndp[s | now] |= dp[s]
        now = shift(now)
    dp = ndp[:]
ans = 0
for i in range(M):
    if dp[i]:
        ans = max(ans, i)
print(ans)
0