結果

問題 No.2071 Shift and OR
ユーザー yosakayosaka
提出日時 2022-09-16 23:45:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 297 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 587 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 100,480 KB
最終ジャッジ日時 2024-12-21 23:25:17
合計ジャッジ時間 7,615 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
63,360 KB
testcase_01 AC 88 ms
64,128 KB
testcase_02 AC 111 ms
66,688 KB
testcase_03 AC 160 ms
68,352 KB
testcase_04 AC 128 ms
67,712 KB
testcase_05 AC 214 ms
72,064 KB
testcase_06 AC 144 ms
68,352 KB
testcase_07 AC 123 ms
66,176 KB
testcase_08 AC 130 ms
67,584 KB
testcase_09 AC 136 ms
67,712 KB
testcase_10 AC 139 ms
67,584 KB
testcase_11 AC 224 ms
72,832 KB
testcase_12 AC 226 ms
72,960 KB
testcase_13 AC 210 ms
71,936 KB
testcase_14 AC 65 ms
60,544 KB
testcase_15 AC 171 ms
69,504 KB
testcase_16 AC 180 ms
69,632 KB
testcase_17 AC 227 ms
72,576 KB
testcase_18 AC 92 ms
64,128 KB
testcase_19 AC 249 ms
73,856 KB
testcase_20 AC 239 ms
73,856 KB
testcase_21 AC 297 ms
78,080 KB
testcase_22 AC 257 ms
75,648 KB
testcase_23 AC 88 ms
96,128 KB
testcase_24 AC 50 ms
61,440 KB
testcase_25 AC 64 ms
76,032 KB
testcase_26 AC 68 ms
78,720 KB
testcase_27 AC 47 ms
58,240 KB
testcase_28 AC 91 ms
100,352 KB
testcase_29 AC 91 ms
100,480 KB
testcase_30 AC 162 ms
68,864 KB
testcase_31 AC 144 ms
68,736 KB
testcase_32 AC 147 ms
68,864 KB
testcase_33 AC 149 ms
68,736 KB
testcase_34 AC 177 ms
69,376 KB
testcase_35 AC 145 ms
68,736 KB
testcase_36 AC 149 ms
68,864 KB
testcase_37 AC 142 ms
68,992 KB
testcase_38 AC 147 ms
69,120 KB
testcase_39 AC 152 ms
70,144 KB
権限があれば一括ダウンロードができます

ソースコード

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