結果

問題 No.2071 Shift and OR
ユーザー mkawa2mkawa2
提出日時 2022-09-16 21:33:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 271 ms / 2,000 ms
コード長 1,025 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 125,092 KB
最終ジャッジ日時 2024-06-01 12:01:31
合計ジャッジ時間 5,356 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,424 KB
testcase_01 AC 45 ms
60,652 KB
testcase_02 AC 50 ms
63,776 KB
testcase_03 AC 94 ms
82,836 KB
testcase_04 AC 66 ms
72,756 KB
testcase_05 AC 140 ms
100,428 KB
testcase_06 AC 92 ms
77,492 KB
testcase_07 AC 55 ms
65,920 KB
testcase_08 AC 60 ms
67,924 KB
testcase_09 AC 70 ms
73,720 KB
testcase_10 AC 78 ms
76,284 KB
testcase_11 AC 160 ms
109,368 KB
testcase_12 AC 234 ms
111,652 KB
testcase_13 AC 139 ms
97,408 KB
testcase_14 AC 39 ms
52,864 KB
testcase_15 AC 111 ms
88,404 KB
testcase_16 AC 110 ms
89,036 KB
testcase_17 AC 218 ms
105,572 KB
testcase_18 AC 43 ms
59,712 KB
testcase_19 AC 271 ms
122,752 KB
testcase_20 AC 159 ms
107,756 KB
testcase_21 AC 210 ms
125,092 KB
testcase_22 AC 192 ms
119,236 KB
testcase_23 AC 79 ms
95,504 KB
testcase_24 AC 45 ms
62,608 KB
testcase_25 AC 59 ms
76,992 KB
testcase_26 AC 62 ms
80,052 KB
testcase_27 AC 44 ms
58,984 KB
testcase_28 AC 82 ms
100,128 KB
testcase_29 AC 81 ms
100,672 KB
testcase_30 AC 139 ms
90,048 KB
testcase_31 AC 67 ms
70,820 KB
testcase_32 AC 69 ms
74,596 KB
testcase_33 AC 73 ms
75,612 KB
testcase_34 AC 101 ms
79,240 KB
testcase_35 AC 88 ms
82,952 KB
testcase_36 AC 103 ms
88,332 KB
testcase_37 AC 79 ms
77,720 KB
testcase_38 AC 74 ms
74,992 KB
testcase_39 AC 68 ms
72,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# inf = (1 << 31)-1
md = 10**9+7
# md = 998244353

def sft(a):
    d = a & 1
    return a >> 1 | d << 15

n = II()
aa = LI()

if n > 15:
    ans = (1 << 16)-1
else:
    dp = [0]
    for a in aa:
        ndp = set()
        for _ in range(16):
            for v in dp: ndp.add(v | a)
            a = sft(a)
        dp = ndp
    ans = max(dp)

print(ans)
0