結果

問題 No.1426 Got a Covered OR
ユーザー nok0nok0
提出日時 2021-01-17 11:04:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,786 ms / 2,000 ms
コード長 1,336 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 139,260 KB
最終ジャッジ日時 2024-05-06 23:31:08
合計ジャッジ時間 39,513 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,305 ms
128,608 KB
testcase_01 AC 1,350 ms
128,608 KB
testcase_02 AC 1,244 ms
128,480 KB
testcase_03 AC 1,317 ms
128,484 KB
testcase_04 AC 1,243 ms
128,608 KB
testcase_05 AC 1,308 ms
128,604 KB
testcase_06 AC 1,306 ms
128,480 KB
testcase_07 AC 1,319 ms
128,612 KB
testcase_08 AC 1,312 ms
128,484 KB
testcase_09 AC 1,269 ms
128,604 KB
testcase_10 AC 1,246 ms
128,484 KB
testcase_11 AC 1,317 ms
128,608 KB
testcase_12 AC 1,339 ms
132,292 KB
testcase_13 AC 1,335 ms
132,644 KB
testcase_14 AC 1,329 ms
131,812 KB
testcase_15 AC 1,304 ms
131,796 KB
testcase_16 AC 1,332 ms
128,996 KB
testcase_17 AC 1,307 ms
129,376 KB
testcase_18 AC 1,516 ms
134,628 KB
testcase_19 AC 1,522 ms
135,364 KB
testcase_20 AC 1,372 ms
130,976 KB
testcase_21 AC 1,457 ms
132,064 KB
testcase_22 AC 1,357 ms
135,108 KB
testcase_23 AC 1,786 ms
139,260 KB
testcase_24 AC 1,300 ms
138,276 KB
testcase_25 AC 1,601 ms
137,520 KB
testcase_26 AC 1,623 ms
137,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math


def popcnt(n):
    c = (n & 0x5555555555555555) + ((n >> 1) & 0x5555555555555555)
    c = (c & 0x3333333333333333) + ((c >> 2) & 0x3333333333333333)
    c = (c & 0x0F0F0F0F0F0F0F0F) + ((c >> 4) & 0x0F0F0F0F0F0F0F0F)
    c = (c & 0x00FF00FF00FF00FF) + ((c >> 8) & 0x00FF00FF00FF00FF)
    c = (c & 0x0000FFFF0000FFFF) + ((c >> 16) & 0x0000FFFF0000FFFF)
    c = (c & 0x00000000FFFFFFFF) + ((c >> 32) & 0x00000000FFFFFFFF)
    return c


mod = 1_000_000_007
MAX = 10 ** 6
fact = [1, 1]
factinv = [1, 1]
inv = [0, 1]

for i in range(2, MAX + 1):
    fact.append((fact[-1] * i) % mod)
    inv.append((-inv[mod % i] * (mod // i)) % mod)
    factinv.append((factinv[-1] * inv[-1]) % mod)


def COM(n, r):
    if (r < 0) or (n < r):
        return 0
    return fact[n] * factinv[r] * factinv[n - r] % mod


n = int(input())
b = list(map(int, input().split()))
base, cont, res = 0, 0, 1
for v in b:
    if v == -1:
        cont += 1
    else:
        if (v | (base ^ v)) != v:
            print(0)
            exit()

        a = popcnt(base)
        b = popcnt(v)
        x = b - a
        tmp = 0
        for i in range(0, x + 1):
            tmp += COM(x, i) * pow((pow(2, b - i, mod) - 1), cont + 1, mod) * (-1 if i % 2 else 1)
            tmp %= mod
        res *= tmp
        res %= mod

        cont, base = 0, v

print(res)
0