結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
75,024 KB
testcase_01 AC 152 ms
78,136 KB
testcase_02 AC 214 ms
79,152 KB
testcase_03 AC 315 ms
80,052 KB
testcase_04 AC 259 ms
79,764 KB
testcase_05 AC 438 ms
82,008 KB
testcase_06 AC 271 ms
79,724 KB
testcase_07 AC 227 ms
79,188 KB
testcase_08 AC 251 ms
79,736 KB
testcase_09 AC 289 ms
79,728 KB
testcase_10 AC 274 ms
79,672 KB
testcase_11 AC 472 ms
82,424 KB
testcase_12 AC 460 ms
82,280 KB
testcase_13 AC 392 ms
81,600 KB
testcase_14 AC 82 ms
64,900 KB
testcase_15 AC 360 ms
80,444 KB
testcase_16 AC 379 ms
80,776 KB
testcase_17 AC 476 ms
82,008 KB
testcase_18 AC 158 ms
78,140 KB
testcase_19 AC 427 ms
82,804 KB
testcase_20 AC 531 ms
82,720 KB
testcase_21 AC 571 ms
84,296 KB
testcase_22 AC 529 ms
83,460 KB
testcase_23 AC 76 ms
96,700 KB
testcase_24 AC 44 ms
62,432 KB
testcase_25 AC 57 ms
77,744 KB
testcase_26 AC 59 ms
79,280 KB
testcase_27 AC 41 ms
58,624 KB
testcase_28 AC 80 ms
100,808 KB
testcase_29 AC 80 ms
101,920 KB
testcase_30 AC 310 ms
80,080 KB
testcase_31 AC 303 ms
80,212 KB
testcase_32 AC 280 ms
80,192 KB
testcase_33 AC 283 ms
80,240 KB
testcase_34 AC 306 ms
80,232 KB
testcase_35 AC 292 ms
80,128 KB
testcase_36 AC 305 ms
79,948 KB
testcase_37 AC 288 ms
80,388 KB
testcase_38 AC 303 ms
80,140 KB
testcase_39 AC 305 ms
80,268 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