結果

問題 No.2071 Shift and OR
ユーザー ikomaikoma
提出日時 2022-09-16 22:14:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 552 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 102,232 KB
最終ジャッジ日時 2024-06-01 13:18:47
合計ジャッジ時間 3,527 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
60,820 KB
testcase_01 AC 53 ms
63,312 KB
testcase_02 AC 50 ms
62,076 KB
testcase_03 AC 53 ms
64,308 KB
testcase_04 AC 52 ms
63,988 KB
testcase_05 AC 53 ms
63,228 KB
testcase_06 AC 51 ms
62,712 KB
testcase_07 WA -
testcase_08 AC 50 ms
62,880 KB
testcase_09 AC 51 ms
62,584 KB
testcase_10 WA -
testcase_11 AC 52 ms
63,280 KB
testcase_12 WA -
testcase_13 AC 52 ms
63,708 KB
testcase_14 AC 44 ms
59,040 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 52 ms
64,472 KB
testcase_18 AC 50 ms
61,832 KB
testcase_19 AC 53 ms
63,204 KB
testcase_20 AC 53 ms
62,972 KB
testcase_21 AC 55 ms
63,836 KB
testcase_22 AC 54 ms
64,956 KB
testcase_23 AC 78 ms
96,776 KB
testcase_24 AC 45 ms
62,112 KB
testcase_25 AC 59 ms
77,676 KB
testcase_26 AC 60 ms
79,832 KB
testcase_27 AC 42 ms
58,404 KB
testcase_28 AC 81 ms
100,872 KB
testcase_29 AC 81 ms
102,232 KB
testcase_30 AC 50 ms
63,768 KB
testcase_31 AC 50 ms
62,608 KB
testcase_32 WA -
testcase_33 AC 50 ms
62,384 KB
testcase_34 AC 52 ms
63,212 KB
testcase_35 AC 51 ms
62,404 KB
testcase_36 AC 51 ms
62,204 KB
testcase_37 WA -
testcase_38 AC 51 ms
62,996 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 0

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

ans = 0
def shift(x):
    return (x>>1) + (1<<15) * (x&1)

dp = [[0]*16 for _ in range(N+1)]

for i in range(N):
    a = A[i]
    for j in range(16):
        for k in range(16):
            x = dp[i][k] | a
            xx = x
            z=15
            while z:
                z-=1
                x = shift(x)
                if xx<x:
                    xx = x
            dp[i+1][j] = max(dp[i+1][j], xx)
        a = shift(a)



print(max(dp[-1]))
0