結果

問題 No.1426 Got a Covered OR
ユーザー nok0nok0
提出日時 2021-01-17 10:57:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,155 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 225,004 KB
最終ジャッジ日時 2024-05-06 23:21:08
合計ジャッジ時間 11,764 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,472 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 40 ms
57,856 KB
testcase_03 AC 39 ms
52,608 KB
testcase_04 AC 38 ms
52,736 KB
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 42 ms
57,856 KB
testcase_08 AC 46 ms
57,600 KB
testcase_09 AC 39 ms
52,224 KB
testcase_10 AC 42 ms
52,352 KB
testcase_11 AC 38 ms
51,968 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 RE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 64 ms
80,512 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

mod = 1_000_000_007


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


def COM(n, r):
    if n < r:
        return 0
    return math.factorial(n) // math.factorial(r) // math.factorial(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:
        for i in range(30):
            if base >> i & 1 and v >> i & 1 == 0:
                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

        cont, base = 0, v

print(res)
0