結果

問題 No.2071 Shift and OR
ユーザー ikomaikoma
提出日時 2022-09-16 22:16:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 553 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 101,424 KB
最終ジャッジ日時 2024-06-01 13:24:53
合計ジャッジ時間 3,666 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
60,048 KB
testcase_01 AC 48 ms
62,548 KB
testcase_02 AC 48 ms
62,216 KB
testcase_03 AC 52 ms
62,916 KB
testcase_04 AC 48 ms
62,424 KB
testcase_05 AC 50 ms
63,712 KB
testcase_06 AC 50 ms
63,548 KB
testcase_07 WA -
testcase_08 AC 48 ms
62,780 KB
testcase_09 AC 49 ms
63,516 KB
testcase_10 WA -
testcase_11 AC 50 ms
63,500 KB
testcase_12 WA -
testcase_13 AC 50 ms
63,108 KB
testcase_14 AC 43 ms
59,728 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 53 ms
63,684 KB
testcase_18 AC 47 ms
62,180 KB
testcase_19 AC 50 ms
63,776 KB
testcase_20 AC 51 ms
63,636 KB
testcase_21 AC 52 ms
65,460 KB
testcase_22 AC 51 ms
63,764 KB
testcase_23 AC 78 ms
96,704 KB
testcase_24 AC 42 ms
62,404 KB
testcase_25 AC 56 ms
76,444 KB
testcase_26 AC 58 ms
79,924 KB
testcase_27 AC 40 ms
59,512 KB
testcase_28 AC 81 ms
101,424 KB
testcase_29 AC 80 ms
101,180 KB
testcase_30 AC 49 ms
63,192 KB
testcase_31 AC 48 ms
62,376 KB
testcase_32 WA -
testcase_33 AC 49 ms
62,772 KB
testcase_34 AC 49 ms
62,888 KB
testcase_35 AC 50 ms
64,348 KB
testcase_36 AC 48 ms
62,340 KB
testcase_37 WA -
testcase_38 AC 48 ms
62,184 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]
            xx = x | a
            z=15
            while z:
                z-=1
                x = shift(x)
                if xx<x|a:
                    xx = x|a
            dp[i+1][j] = max(dp[i+1][j], xx)
        a = shift(a)

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