結果

問題 No.1426 Got a Covered OR
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-16 14:54:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 630 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 99,072 KB
最終ジャッジ日時 2024-10-16 14:54:31
合計ジャッジ時間 4,112 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 41 ms
52,224 KB
testcase_06 AC 42 ms
52,480 KB
testcase_07 AC 43 ms
52,224 KB
testcase_08 AC 42 ms
52,096 KB
testcase_09 AC 43 ms
51,712 KB
testcase_10 AC 42 ms
52,224 KB
testcase_11 AC 42 ms
51,712 KB
testcase_12 AC 59 ms
70,016 KB
testcase_13 AC 63 ms
73,344 KB
testcase_14 AC 59 ms
69,248 KB
testcase_15 AC 58 ms
68,864 KB
testcase_16 AC 49 ms
60,416 KB
testcase_17 AC 75 ms
70,144 KB
testcase_18 AC 134 ms
88,908 KB
testcase_19 AC 109 ms
88,960 KB
testcase_20 AC 86 ms
77,488 KB
testcase_21 AC 91 ms
80,852 KB
testcase_22 AC 69 ms
78,976 KB
testcase_23 AC 126 ms
99,072 KB
testcase_24 AC 83 ms
93,440 KB
testcase_25 AC 120 ms
95,744 KB
testcase_26 AC 101 ms
93,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=[0]+list(map(int,input().split()))
q=[(0,0)]
for i in range(1,n+1):
  if a[i]!=-1:
    l=i-1
    while a[l]==-1:
      l-=1
    q+=[(a[i],i-l)]
if any(q[i-1][0]&q[i][0]!=q[i-1][0] for i in range(1,len(q))):
  print(0)
  exit()
M=10**9+7
fa=[1,1]
fb=[1,1]
for i in range(2,30+1):
  fa+=[fa[-1]*i%M]
  fb+=[fb[-1]*(M//i)*fb[M%i]*fa[M%i-1]*(-1)%M]
c=lambda n,k:fa[n]*fb[k]*fb[n-k]%M if n>=k else 0
a=1
for i in range(1,len(q)):
  u,_=q[i-1]
  v,l=q[i]
  c1=(v^u).bit_count()
  c2=(v&u).bit_count()
  b=0
  for j in range(c1+1):
    b+=c(c1,j)*pow(pow(2,c1-j+c2,M)-1,l,M)*((-1)**(j%2))
    b%=M
  a*=b
  a%=M
print(a)
0