結果

問題 No.2071 Shift and OR
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-09-17 10:43:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 111,468 KB
最終ジャッジ日時 2024-12-22 00:30:28
合計ジャッジ時間 5,188 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
60,288 KB
testcase_01 AC 58 ms
61,568 KB
testcase_02 AC 62 ms
61,824 KB
testcase_03 AC 85 ms
63,104 KB
testcase_04 AC 72 ms
62,592 KB
testcase_05 AC 111 ms
64,768 KB
testcase_06 AC 76 ms
62,464 KB
testcase_07 AC 65 ms
62,208 KB
testcase_08 AC 70 ms
62,592 KB
testcase_09 AC 74 ms
62,464 KB
testcase_10 AC 73 ms
62,720 KB
testcase_11 AC 112 ms
65,152 KB
testcase_12 AC 119 ms
65,280 KB
testcase_13 AC 107 ms
64,384 KB
testcase_14 AC 49 ms
59,264 KB
testcase_15 AC 96 ms
63,616 KB
testcase_16 AC 93 ms
63,744 KB
testcase_17 AC 117 ms
65,152 KB
testcase_18 AC 57 ms
60,928 KB
testcase_19 AC 130 ms
65,664 KB
testcase_20 AC 125 ms
65,920 KB
testcase_21 AC 151 ms
67,328 KB
testcase_22 AC 152 ms
66,816 KB
testcase_23 AC 127 ms
106,624 KB
testcase_24 AC 97 ms
72,576 KB
testcase_25 AC 108 ms
87,168 KB
testcase_26 AC 112 ms
89,600 KB
testcase_27 AC 93 ms
68,864 KB
testcase_28 AC 133 ms
111,468 KB
testcase_29 AC 132 ms
110,976 KB
testcase_30 AC 89 ms
63,104 KB
testcase_31 AC 75 ms
63,232 KB
testcase_32 AC 73 ms
62,976 KB
testcase_33 AC 78 ms
63,360 KB
testcase_34 AC 83 ms
62,976 KB
testcase_35 AC 80 ms
63,104 KB
testcase_36 AC 85 ms
63,104 KB
testcase_37 AC 77 ms
63,104 KB
testcase_38 AC 78 ms
63,104 KB
testcase_39 AC 76 ms
62,976 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