結果

問題 No.2071 Shift and OR
ユーザー titiatitia
提出日時 2022-09-17 01:23:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,050 ms / 2,000 ms
コード長 550 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 99,848 KB
最終ジャッジ日時 2024-06-01 14:46:07
合計ジャッジ時間 10,098 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
61,668 KB
testcase_01 AC 52 ms
63,676 KB
testcase_02 AC 63 ms
70,184 KB
testcase_03 AC 214 ms
76,256 KB
testcase_04 AC 107 ms
76,244 KB
testcase_05 AC 418 ms
76,604 KB
testcase_06 AC 131 ms
76,180 KB
testcase_07 AC 76 ms
76,872 KB
testcase_08 AC 90 ms
76,180 KB
testcase_09 AC 127 ms
76,720 KB
testcase_10 AC 142 ms
76,252 KB
testcase_11 AC 471 ms
76,272 KB
testcase_12 AC 400 ms
76,188 KB
testcase_13 AC 406 ms
76,496 KB
testcase_14 AC 44 ms
58,864 KB
testcase_15 AC 293 ms
76,188 KB
testcase_16 AC 274 ms
76,388 KB
testcase_17 AC 474 ms
76,184 KB
testcase_18 AC 53 ms
63,496 KB
testcase_19 AC 588 ms
76,268 KB
testcase_20 AC 554 ms
76,068 KB
testcase_21 AC 760 ms
76,420 KB
testcase_22 AC 1,050 ms
76,268 KB
testcase_23 AC 75 ms
95,576 KB
testcase_24 AC 44 ms
61,900 KB
testcase_25 AC 56 ms
76,864 KB
testcase_26 AC 59 ms
80,340 KB
testcase_27 AC 41 ms
59,332 KB
testcase_28 AC 79 ms
99,848 KB
testcase_29 AC 78 ms
99,716 KB
testcase_30 AC 209 ms
76,052 KB
testcase_31 AC 106 ms
76,652 KB
testcase_32 AC 111 ms
76,240 KB
testcase_33 AC 121 ms
76,396 KB
testcase_34 AC 142 ms
76,440 KB
testcase_35 AC 154 ms
76,492 KB
testcase_36 AC 188 ms
76,376 KB
testcase_37 AC 137 ms
76,660 KB
testcase_38 AC 123 ms
76,188 KB
testcase_39 AC 119 ms
76,740 KB
権限があれば一括ダウンロードができます

ソースコード

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<<16)
DP[0]=1

for a in A:
    k=a
    while k%2==0:
        k//=2

    for i in range((1<<16)-1,-1,-1):
        if DP[i]==1:
            for b in range(16):
                u=i
                
                for t in range(16):
                    if k & (1<<t) != 0:
                        u |= 1<< ((b+t)%16)

                DP[u]=1

ANS=0
for i in range(1<<16):
    if DP[i]==1:
        ANS=i

print(ANS)
0