結果

問題 No.2071 Shift and OR
ユーザー rlangevinrlangevin
提出日時 2023-01-28 11:15:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 468 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 100,560 KB
最終ジャッジ日時 2024-06-28 16:03:17
合計ジャッジ時間 6,077 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
69,760 KB
testcase_01 AC 81 ms
73,384 KB
testcase_02 AC 98 ms
78,624 KB
testcase_03 AC 109 ms
78,756 KB
testcase_04 AC 109 ms
78,720 KB
testcase_05 AC 129 ms
80,356 KB
testcase_06 AC 105 ms
78,720 KB
testcase_07 AC 98 ms
78,772 KB
testcase_08 AC 104 ms
78,976 KB
testcase_09 AC 103 ms
79,088 KB
testcase_10 AC 102 ms
78,844 KB
testcase_11 AC 134 ms
80,800 KB
testcase_12 AC 134 ms
81,184 KB
testcase_13 AC 127 ms
80,676 KB
testcase_14 AC 64 ms
63,872 KB
testcase_15 AC 115 ms
79,468 KB
testcase_16 AC 116 ms
79,364 KB
testcase_17 AC 131 ms
81,180 KB
testcase_18 AC 81 ms
73,344 KB
testcase_19 AC 139 ms
81,956 KB
testcase_20 AC 139 ms
81,372 KB
testcase_21 AC 154 ms
81,312 KB
testcase_22 AC 145 ms
81,440 KB
testcase_23 AC 77 ms
96,384 KB
testcase_24 AC 45 ms
61,312 KB
testcase_25 AC 61 ms
76,032 KB
testcase_26 AC 61 ms
78,592 KB
testcase_27 AC 43 ms
57,728 KB
testcase_28 AC 82 ms
100,560 KB
testcase_29 AC 81 ms
100,096 KB
testcase_30 AC 109 ms
78,884 KB
testcase_31 AC 108 ms
78,824 KB
testcase_32 AC 108 ms
79,200 KB
testcase_33 AC 108 ms
78,872 KB
testcase_34 AC 109 ms
78,928 KB
testcase_35 AC 110 ms
79,132 KB
testcase_36 AC 110 ms
78,812 KB
testcase_37 AC 109 ms
78,876 KB
testcase_38 AC 109 ms
79,136 KB
testcase_39 AC 106 ms
78,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def shift(x):
    return ((x % 2) << 15) + x//2

N =int(input())
A = list(map(int, input().split()))
if N >= 16:
    print(2 ** 16 - 1)
    exit()
            
pre = [0] * (1 << 16)
pre[0] = 1 
for i in range(N):
    dp = [0] * (1 << 16)
    v = A[i]
    for s in range(1 << 16):
        for j in range(16):
            dp[s|v] |= pre[s]
            v = shift(v)
    pre, dp = dp, pre

for i in range(2 ** 16 - 1, -1, -1):
    if pre[i]:
        print(i)
        break
0