結果

問題 No.2071 Shift and OR
ユーザー dn6049949dn6049949
提出日時 2022-09-16 21:45:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 953 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 89,412 KB
最終ジャッジ日時 2024-06-01 12:18:51
合計ジャッジ時間 4,812 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
63,064 KB
testcase_01 AC 61 ms
64,372 KB
testcase_02 AC 66 ms
64,124 KB
testcase_03 AC 87 ms
64,884 KB
testcase_04 AC 73 ms
64,508 KB
testcase_05 AC 111 ms
67,056 KB
testcase_06 AC 79 ms
64,400 KB
testcase_07 AC 68 ms
64,260 KB
testcase_08 AC 73 ms
64,360 KB
testcase_09 AC 75 ms
64,636 KB
testcase_10 AC 76 ms
64,564 KB
testcase_11 AC 112 ms
68,324 KB
testcase_12 AC 112 ms
68,192 KB
testcase_13 AC 106 ms
67,532 KB
testcase_14 AC 54 ms
62,496 KB
testcase_15 AC 95 ms
65,248 KB
testcase_16 AC 95 ms
66,556 KB
testcase_17 AC 118 ms
67,840 KB
testcase_18 AC 60 ms
63,272 KB
testcase_19 AC 130 ms
67,516 KB
testcase_20 AC 124 ms
67,636 KB
testcase_21 AC 149 ms
71,024 KB
testcase_22 AC 132 ms
69,824 KB
testcase_23 AC 76 ms
86,704 KB
testcase_24 AC 53 ms
63,456 KB
testcase_25 AC 62 ms
73,196 KB
testcase_26 AC 64 ms
74,652 KB
testcase_27 AC 50 ms
60,676 KB
testcase_28 AC 79 ms
88,996 KB
testcase_29 AC 77 ms
89,412 KB
testcase_30 AC 84 ms
65,616 KB
testcase_31 AC 76 ms
65,572 KB
testcase_32 AC 75 ms
64,824 KB
testcase_33 AC 78 ms
66,160 KB
testcase_34 AC 80 ms
65,380 KB
testcase_35 AC 81 ms
64,552 KB
testcase_36 AC 84 ms
64,696 KB
testcase_37 AC 78 ms
64,400 KB
testcase_38 AC 75 ms
65,084 KB
testcase_39 AC 77 ms
65,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque
from heapq import heappush, heappop
from itertools import permutations, accumulate
import sys
import math
import bisect
def LI(): return [int(x) for x in sys.stdin.readline().split()]
def I(): return int(sys.stdin.readline())
def IR(n):
    return [I() for _ in range(n)]
def LIR(n):
    return [LI() for _ in range(n)]

sys.setrecursionlimit(1000000)
mod = 1000000007

def main():
    def shift(x):
        return (x>>1)+((x&1)<<15)
    n = I()
    a = LI()
    m = 2**16
    if n > 15:
        print(m-1)
        return
    f = [0]*m
    f[0] = 1
    for i in a:
        nf = [0]*m
        for _ in range(16):
            for x in range(m):
                if not f[x]:
                    continue
                nf[x|i] = 1
            i = shift(i)
        f = nf
    for i in reversed(range(m)):
        if f[i]:
            print(i)
            return
    return


if __name__ == "__main__":
    main()
0