結果

問題 No.2071 Shift and OR
ユーザー ああいいああいい
提出日時 2022-09-17 21:14:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 100,736 KB
最終ジャッジ日時 2024-06-01 15:19:13
合計ジャッジ時間 3,996 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
59,648 KB
testcase_01 AC 52 ms
62,848 KB
testcase_02 AC 56 ms
64,000 KB
testcase_03 AC 62 ms
69,376 KB
testcase_04 AC 54 ms
65,664 KB
testcase_05 AC 80 ms
76,672 KB
testcase_06 AC 62 ms
66,560 KB
testcase_07 AC 52 ms
64,000 KB
testcase_08 AC 54 ms
65,408 KB
testcase_09 AC 56 ms
66,432 KB
testcase_10 AC 56 ms
66,688 KB
testcase_11 AC 75 ms
78,848 KB
testcase_12 AC 77 ms
79,232 KB
testcase_13 AC 71 ms
75,520 KB
testcase_14 AC 45 ms
58,624 KB
testcase_15 AC 65 ms
71,808 KB
testcase_16 AC 65 ms
71,936 KB
testcase_17 AC 74 ms
78,208 KB
testcase_18 AC 50 ms
62,576 KB
testcase_19 AC 83 ms
82,372 KB
testcase_20 AC 76 ms
80,244 KB
testcase_21 AC 40 ms
52,204 KB
testcase_22 AC 87 ms
82,320 KB
testcase_23 AC 83 ms
96,548 KB
testcase_24 AC 47 ms
61,440 KB
testcase_25 AC 57 ms
76,288 KB
testcase_26 AC 62 ms
79,104 KB
testcase_27 AC 42 ms
58,112 KB
testcase_28 AC 80 ms
100,224 KB
testcase_29 AC 82 ms
100,736 KB
testcase_30 AC 61 ms
70,636 KB
testcase_31 AC 55 ms
66,560 KB
testcase_32 AC 56 ms
66,816 KB
testcase_33 AC 57 ms
67,584 KB
testcase_34 AC 57 ms
68,224 KB
testcase_35 AC 59 ms
68,736 KB
testcase_36 AC 61 ms
69,632 KB
testcase_37 AC 60 ms
67,712 KB
testcase_38 AC 57 ms
67,712 KB
testcase_39 AC 57 ms
66,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))

import sys
if N >= 15:
    print((1 << 16) - 1)
    exit()

C = 1 << 16
def shift(x):
    return (x >> 1) + (x & 1) * (1 << 15)
dp = [0] * C
dp[0] = 1
for a in A:
    nx = [0] * C
    for i in range(C):
        if dp[i]:
            for _ in range(16):
                nx[i | a] = 1
                a = shift(a)
    dp = nx
for i in range(C - 1,-1,-1):
    if dp[i]:
        print(i)
        exit()
0