結果

問題 No.1426 Got a Covered OR
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-03-12 22:58:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 558 ms / 2,000 ms
コード長 1,164 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 247,296 KB
最終ジャッジ日時 2024-10-14 13:33:40
合計ジャッジ時間 5,017 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,264 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 39 ms
52,608 KB
testcase_08 AC 39 ms
51,840 KB
testcase_09 AC 38 ms
52,096 KB
testcase_10 AC 38 ms
51,840 KB
testcase_11 AC 37 ms
52,224 KB
testcase_12 AC 202 ms
247,296 KB
testcase_13 AC 238 ms
232,192 KB
testcase_14 AC 192 ms
227,584 KB
testcase_15 AC 194 ms
243,968 KB
testcase_16 AC 79 ms
90,624 KB
testcase_17 AC 108 ms
105,856 KB
testcase_18 AC 290 ms
235,520 KB
testcase_19 AC 285 ms
235,392 KB
testcase_20 AC 171 ms
157,696 KB
testcase_21 AC 192 ms
209,920 KB
testcase_22 AC 558 ms
239,448 KB
testcase_23 AC 407 ms
243,584 KB
testcase_24 AC 59 ms
78,976 KB
testcase_25 AC 345 ms
242,176 KB
testcase_26 AC 65 ms
82,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
B = list(map(int,input().split()))
mod = 10**9+7

num = 0
for b in B:
    if b != -1:
        if b|num != b:
            print(0)
            exit()
        num = b

fact = [1,1]
finv = [1,1]
inv = [0,1]
pow2 = [1]
for i in range(n*40):
    pow2.append(pow2[-1]*2%mod)
for i in range(2,max(40,n)+5):
    fact.append((fact[-1]*i)%mod)
    inv.append((inv[mod%i]*(mod-mod//i))%mod)
    finv.append((finv[-1]*inv[-1])%mod)
 
def nCr(n,r,mod):
    if r > n:
        return 0
    else: 
        return fact[n]*finv[r]*finv[n-r]%mod

def calc(x,all,le):
    ind = 1
    base = 0

    for i in range(x+1):
        count = 0
        mi = 1
        for j in range(le+1):
            count += mi*nCr(le,j,mod)*pow2[(all-i)*(le-j)]%mod
            count %= mod
            mi *= -1
        base += ind*nCr(x,i,mod)*count%mod
        base %= mod
        ind *= -1

    return base


ans = 1
num = 0
now = 0
for b in B:
    num += 1
    if b == -1:
        continue
    x = b^now
    all = bin(b).count("1")
    c = 0
    for i in range(40):
        if x >> i & 1:
            c += 1
    ans *= calc(c,all,num)
    ans %= mod
    num = 0
    now = b
print(ans)
0