結果

問題 No.1426 Got a Covered OR
ユーザー yuusanlondonyuusanlondon
提出日時 2021-03-12 22:36:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,117 ms / 2,000 ms
コード長 892 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 103,396 KB
最終ジャッジ日時 2024-10-14 13:10:08
合計ジャッジ時間 6,418 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
74,496 KB
testcase_01 AC 122 ms
74,368 KB
testcase_02 AC 122 ms
74,496 KB
testcase_03 AC 122 ms
74,368 KB
testcase_04 AC 121 ms
74,752 KB
testcase_05 AC 125 ms
74,624 KB
testcase_06 AC 124 ms
74,624 KB
testcase_07 AC 126 ms
74,496 KB
testcase_08 AC 121 ms
74,496 KB
testcase_09 AC 122 ms
74,240 KB
testcase_10 AC 123 ms
74,624 KB
testcase_11 AC 124 ms
74,368 KB
testcase_12 AC 225 ms
94,712 KB
testcase_13 AC 289 ms
96,768 KB
testcase_14 AC 240 ms
93,440 KB
testcase_15 AC 207 ms
93,568 KB
testcase_16 AC 149 ms
84,224 KB
testcase_17 AC 153 ms
86,144 KB
testcase_18 AC 190 ms
97,664 KB
testcase_19 AC 187 ms
97,752 KB
testcase_20 AC 160 ms
90,368 KB
testcase_21 AC 165 ms
93,312 KB
testcase_22 AC 1,117 ms
101,248 KB
testcase_23 AC 197 ms
103,396 KB
testcase_24 AC 144 ms
96,128 KB
testcase_25 AC 196 ms
102,784 KB
testcase_26 AC 209 ms
102,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
prev=0
count=0
MOD=10**9+7
factorials=[1]
temp=1
s=10**5
for i in range(1,s+1):
  temp=(temp*i)%MOD
  factorials.append(temp)
inverses=[]
for i in range(s+1):
  inverses.append(pow(factorials[i],MOD-2,MOD))
ans=1
for _ in range(n):
  count+=1
  if a[_]!=-1:
    bitcount1=0
    bitcount2=0
    fail=0
    for i in range(30):
      if prev&1<<i and not a[_]&1<<i:
        fail=1
      elif prev&1<<i:
        bitcount2+=1
      elif a[_]&1<<i:
        bitcount1+=1
    if fail:
      print(0)
      exit()
    tmp0=0
    for i in range(count+1):
      tmp=pow(-1,count-i)
      tmp=(tmp*factorials[count]*inverses[i]*inverses[count-i])%MOD
      tmp2=1
      for j in range(bitcount1):
        tmp2=(tmp2*(pow(2,i,MOD)-1))%MOD
      tmp0=(tmp0+tmp*tmp2*pow(2,bitcount2*i,MOD))%MOD
    ans=(ans*tmp0)%MOD

    count=0
    prev=a[_]
print(ans)    
0