結果

問題 No.2071 Shift and OR
ユーザー titiatitia
提出日時 2022-09-17 01:01:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 536 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,672 KB
実行使用メモリ 99,816 KB
最終ジャッジ日時 2024-06-01 14:43:51
合計ジャッジ時間 4,205 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,272 KB
testcase_01 AC 45 ms
59,800 KB
testcase_02 AC 50 ms
62,764 KB
testcase_03 AC 54 ms
65,732 KB
testcase_04 WA -
testcase_05 AC 76 ms
73,264 KB
testcase_06 AC 52 ms
64,124 KB
testcase_07 AC 50 ms
63,040 KB
testcase_08 AC 51 ms
64,788 KB
testcase_09 AC 53 ms
64,296 KB
testcase_10 AC 54 ms
64,072 KB
testcase_11 AC 82 ms
76,064 KB
testcase_12 AC 81 ms
75,908 KB
testcase_13 AC 73 ms
73,580 KB
testcase_14 AC 40 ms
52,212 KB
testcase_15 AC 64 ms
69,676 KB
testcase_16 AC 61 ms
67,032 KB
testcase_17 AC 82 ms
76,496 KB
testcase_18 AC 42 ms
59,628 KB
testcase_19 AC 93 ms
75,800 KB
testcase_20 AC 100 ms
76,064 KB
testcase_21 AC 382 ms
76,128 KB
testcase_22 AC 134 ms
75,816 KB
testcase_23 AC 73 ms
94,948 KB
testcase_24 AC 43 ms
63,036 KB
testcase_25 AC 56 ms
77,148 KB
testcase_26 AC 59 ms
79,300 KB
testcase_27 AC 42 ms
59,364 KB
testcase_28 AC 79 ms
99,796 KB
testcase_29 AC 78 ms
99,816 KB
testcase_30 AC 54 ms
65,804 KB
testcase_31 AC 57 ms
65,560 KB
testcase_32 AC 54 ms
65,012 KB
testcase_33 AC 57 ms
66,656 KB
testcase_34 AC 55 ms
64,744 KB
testcase_35 AC 57 ms
66,048 KB
testcase_36 AC 58 ms
66,016 KB
testcase_37 AC 55 ms
65,272 KB
testcase_38 AC 57 ms
66,024 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

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

DP=[0]*(1<<N)

for i in range(1<<N):
    now=DP[i]
    for j in range(N):
        if i & (1<<j) != 0:
            continue

        k=A[j]
        while k%2==0:
            k//=2

        for b in range(16):
            u=now
            
            for t in range(16):
                if k & (1<<t) != 0:
                    u |= 1<< ((b+t)%16)

            DP[i|(1<<j)]=max(DP[i|(1<<j)],u)

print(DP[-1])
0