結果

問題 No.2071 Shift and OR
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-09-09 22:20:48
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 402 bytes
コンパイル時間 2,392 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 847,756 KB
最終ジャッジ日時 2024-05-04 12:27:46
合計ジャッジ時間 5,999 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
72,148 KB
testcase_01 AC 84 ms
75,524 KB
testcase_02 AC 104 ms
80,316 KB
testcase_03 AC 121 ms
80,920 KB
testcase_04 AC 116 ms
80,308 KB
testcase_05 AC 152 ms
82,628 KB
testcase_06 AC 117 ms
80,636 KB
testcase_07 AC 106 ms
79,900 KB
testcase_08 AC 111 ms
80,620 KB
testcase_09 AC 112 ms
80,348 KB
testcase_10 AC 111 ms
80,544 KB
testcase_11 AC 159 ms
83,208 KB
testcase_12 AC 157 ms
83,232 KB
testcase_13 AC 153 ms
82,640 KB
testcase_14 AC 61 ms
66,248 KB
testcase_15 AC 129 ms
81,632 KB
testcase_16 AC 129 ms
81,488 KB
testcase_17 AC 155 ms
82,972 KB
testcase_18 AC 84 ms
75,772 KB
testcase_19 AC 168 ms
83,780 KB
testcase_20 AC 169 ms
83,672 KB
testcase_21 AC 193 ms
85,232 KB
testcase_22 AC 179 ms
83,888 KB
testcase_23 MLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #


n=int(input())
def shift(x):
    return x//2+(2**15)*(x%2)
a=[0]+list(map(int,input().split()))
if n>=16:
    print(2**16-1)
dp=[[0]*(2**16) for i in range(n+3)]
dp[0][0]=1
for i in range(1,n+1):
    for j in range(2**16):
        for iii in range(16):
            dp[i][j|a[i]]|=dp[i-1][j]
            a[i]=shift(a[i])
for j in range(2**16-1,-1,-1):
    if dp[n][j]:
        print(j)
        exit()
0