結果

問題 No.2071 Shift and OR
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-09-17 10:43:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 112,760 KB
最終ジャッジ日時 2024-06-01 14:58:45
合計ジャッジ時間 4,892 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
62,260 KB
testcase_01 AC 56 ms
61,924 KB
testcase_02 AC 62 ms
63,084 KB
testcase_03 AC 82 ms
63,832 KB
testcase_04 AC 68 ms
62,628 KB
testcase_05 AC 104 ms
65,068 KB
testcase_06 AC 72 ms
63,380 KB
testcase_07 AC 63 ms
63,540 KB
testcase_08 AC 69 ms
63,384 KB
testcase_09 AC 69 ms
62,984 KB
testcase_10 AC 71 ms
63,552 KB
testcase_11 AC 110 ms
66,908 KB
testcase_12 AC 113 ms
66,688 KB
testcase_13 AC 105 ms
65,920 KB
testcase_14 AC 46 ms
60,908 KB
testcase_15 AC 90 ms
64,448 KB
testcase_16 AC 89 ms
64,060 KB
testcase_17 AC 115 ms
66,504 KB
testcase_18 AC 53 ms
62,192 KB
testcase_19 AC 127 ms
67,040 KB
testcase_20 AC 121 ms
65,900 KB
testcase_21 AC 148 ms
67,988 KB
testcase_22 AC 143 ms
67,704 KB
testcase_23 AC 122 ms
107,588 KB
testcase_24 AC 92 ms
73,360 KB
testcase_25 AC 105 ms
87,264 KB
testcase_26 AC 106 ms
90,956 KB
testcase_27 AC 89 ms
69,104 KB
testcase_28 AC 127 ms
111,976 KB
testcase_29 AC 128 ms
112,760 KB
testcase_30 AC 82 ms
64,972 KB
testcase_31 AC 71 ms
64,828 KB
testcase_32 AC 69 ms
63,268 KB
testcase_33 AC 73 ms
64,136 KB
testcase_34 AC 75 ms
63,884 KB
testcase_35 AC 76 ms
63,636 KB
testcase_36 AC 81 ms
64,836 KB
testcase_37 AC 75 ms
64,560 KB
testcase_38 AC 73 ms
64,008 KB
testcase_39 AC 73 ms
63,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def shift(x):
    return x//2 + (1 << 15) * (x % 2)
n = int(input())
a =list(map(int,input().split()))
dp = [0] * (1<<16)
dp[0] = 1
for i in range(min(15,n)):
    aa = a[i]
    n_dp = [0] * (1<<16)
    for j in range(14):
        for k in range(1<<16):
            if dp[k]:
                n_dp[k|aa] = 1
        aa = shift(aa)
    dp = n_dp
import sys
for i in range((1<<16)-1,-1,-1):
#     print(i)
    if dp[i]:sys.exit(print(i))
0