結果

問題 No.2071 Shift and OR
ユーザー vwxyzvwxyz
提出日時 2023-02-24 07:24:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 331 ms / 2,000 ms
コード長 460 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 101,372 KB
最終ジャッジ日時 2024-07-23 22:06:24
合計ジャッジ時間 8,176 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
70,924 KB
testcase_01 AC 104 ms
73,984 KB
testcase_02 AC 134 ms
79,172 KB
testcase_03 AC 182 ms
78,788 KB
testcase_04 AC 156 ms
78,828 KB
testcase_05 AC 234 ms
79,908 KB
testcase_06 AC 159 ms
78,816 KB
testcase_07 AC 140 ms
78,760 KB
testcase_08 AC 151 ms
78,912 KB
testcase_09 AC 173 ms
78,924 KB
testcase_10 AC 171 ms
78,764 KB
testcase_11 AC 252 ms
80,540 KB
testcase_12 AC 248 ms
80,544 KB
testcase_13 AC 234 ms
80,032 KB
testcase_14 AC 69 ms
64,216 KB
testcase_15 AC 201 ms
79,004 KB
testcase_16 AC 202 ms
79,004 KB
testcase_17 AC 256 ms
80,664 KB
testcase_18 AC 99 ms
74,412 KB
testcase_19 AC 262 ms
81,184 KB
testcase_20 AC 274 ms
81,420 KB
testcase_21 AC 331 ms
81,160 KB
testcase_22 AC 291 ms
81,176 KB
testcase_23 AC 77 ms
96,556 KB
testcase_24 AC 45 ms
63,204 KB
testcase_25 AC 62 ms
77,832 KB
testcase_26 AC 61 ms
79,376 KB
testcase_27 AC 43 ms
59,872 KB
testcase_28 AC 80 ms
101,372 KB
testcase_29 AC 80 ms
100,828 KB
testcase_30 AC 176 ms
78,612 KB
testcase_31 AC 161 ms
78,748 KB
testcase_32 AC 162 ms
79,252 KB
testcase_33 AC 169 ms
78,972 KB
testcase_34 AC 190 ms
78,880 KB
testcase_35 AC 173 ms
78,768 KB
testcase_36 AC 179 ms
78,760 KB
testcase_37 AC 168 ms
78,808 KB
testcase_38 AC 166 ms
78,620 KB
testcase_39 AC 166 ms
79,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline
import heapq

N=int(readline())
A=list(map(int,readline().split()))
if N>=16:
    ans=(1<<16)-1
else:
    dp=[False]*(1<<16)
    dp[0]=True
    for a in A:
        prev=dp
        dp=[False]*(1<<16)
        for bit in range(1<<16):
            for i in range(16):
                dp[bit|a]|=prev[bit]
                a=a>>1|(a&1)<<15
    for ans in range((1<<16)-1,-1,-1):
        if dp[ans]:
            break
print(ans)
0