結果

問題 No.2071 Shift and OR
ユーザー ShirotsumeShirotsume
提出日時 2022-09-16 23:33:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 584 ms / 2,000 ms
コード長 647 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 100,480 KB
最終ジャッジ日時 2024-12-21 23:11:15
合計ジャッジ時間 12,678 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
73,472 KB
testcase_01 AC 159 ms
78,192 KB
testcase_02 AC 213 ms
79,316 KB
testcase_03 AC 318 ms
80,160 KB
testcase_04 AC 259 ms
79,744 KB
testcase_05 AC 444 ms
81,968 KB
testcase_06 AC 276 ms
79,688 KB
testcase_07 AC 227 ms
79,232 KB
testcase_08 AC 251 ms
79,620 KB
testcase_09 AC 291 ms
79,524 KB
testcase_10 AC 273 ms
79,544 KB
testcase_11 AC 478 ms
82,304 KB
testcase_12 AC 468 ms
82,188 KB
testcase_13 AC 396 ms
81,884 KB
testcase_14 AC 81 ms
65,024 KB
testcase_15 AC 363 ms
80,564 KB
testcase_16 AC 379 ms
80,620 KB
testcase_17 AC 469 ms
82,160 KB
testcase_18 AC 158 ms
77,952 KB
testcase_19 AC 431 ms
82,944 KB
testcase_20 AC 535 ms
82,704 KB
testcase_21 AC 584 ms
84,352 KB
testcase_22 AC 536 ms
83,328 KB
testcase_23 AC 77 ms
96,512 KB
testcase_24 AC 43 ms
61,696 KB
testcase_25 AC 57 ms
76,416 KB
testcase_26 AC 61 ms
79,360 KB
testcase_27 AC 41 ms
57,984 KB
testcase_28 AC 79 ms
100,352 KB
testcase_29 AC 79 ms
100,480 KB
testcase_30 AC 313 ms
80,384 KB
testcase_31 AC 308 ms
80,384 KB
testcase_32 AC 283 ms
80,120 KB
testcase_33 AC 288 ms
80,200 KB
testcase_34 AC 312 ms
80,160 KB
testcase_35 AC 297 ms
80,176 KB
testcase_36 AC 306 ms
80,184 KB
testcase_37 AC 295 ms
80,036 KB
testcase_38 AC 308 ms
80,124 KB
testcase_39 AC 308 ms
80,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
INF = 2**63-1
mod = 998244353
n = ii()

a = li()

if n >= 16:
    print(2 ** 16 - 1)
else:
    dp = [[False] * (2 ** 16) for _ in range(n + 1)]
    dp[0][0] = True
    for i in range(n):
        for j in range(2 ** 16):
            for k in range(16):
                dp[i + 1][j] |= dp[i][j]
                dp[i + 1][j | a[i]] |= dp[i][j]
                a[i] = a[i] // 2 + 2 ** 15 * (a[i] % 2)
    ans = 0
    for i in range(2**16):
        if dp[n][i]:
            ans = max(ans, i)
    print(ans)
0