結果

問題 No.1846 Good Binary Matrix
ユーザー googol_S0googol_S0
提出日時 2022-02-18 21:31:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,010 ms / 2,000 ms
コード長 471 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 180,480 KB
最終ジャッジ日時 2024-06-29 08:22:39
合計ジャッジ時間 15,883 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 172 ms
176,256 KB
testcase_01 AC 190 ms
176,000 KB
testcase_02 AC 167 ms
176,512 KB
testcase_03 AC 159 ms
176,512 KB
testcase_04 AC 161 ms
176,256 KB
testcase_05 AC 162 ms
176,256 KB
testcase_06 AC 162 ms
176,000 KB
testcase_07 AC 161 ms
175,872 KB
testcase_08 AC 160 ms
176,128 KB
testcase_09 AC 160 ms
176,512 KB
testcase_10 AC 160 ms
176,000 KB
testcase_11 AC 163 ms
176,256 KB
testcase_12 AC 161 ms
176,256 KB
testcase_13 AC 159 ms
176,256 KB
testcase_14 AC 160 ms
176,000 KB
testcase_15 AC 161 ms
176,256 KB
testcase_16 AC 984 ms
179,200 KB
testcase_17 AC 1,010 ms
178,432 KB
testcase_18 AC 934 ms
178,560 KB
testcase_19 AC 971 ms
178,816 KB
testcase_20 AC 1,000 ms
178,944 KB
testcase_21 AC 400 ms
177,792 KB
testcase_22 AC 399 ms
178,048 KB
testcase_23 AC 163 ms
176,640 KB
testcase_24 AC 164 ms
176,256 KB
testcase_25 AC 746 ms
178,944 KB
testcase_26 AC 547 ms
178,688 KB
testcase_27 AC 184 ms
179,200 KB
testcase_28 AC 249 ms
180,480 KB
testcase_29 AC 413 ms
178,816 KB
testcase_30 AC 844 ms
178,432 KB
testcase_31 AC 737 ms
178,688 KB
testcase_32 AC 872 ms
179,164 KB
testcase_33 AC 952 ms
178,816 KB
testcase_34 AC 164 ms
179,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7
def cmb(n,r):
  if r<0 or r>n:
    return 0
  return ((g1[n]*g2[r]%mod)*g2[n-r])%mod
 
N=5000000
g1=[1]*(N+3)
for i in range(2,N+3):
  g1[i]=g1[i-1]*i%mod
g2=[0]*len(g1)
g2[-1]=pow(g1[-1],mod-2,mod)
for i in range(N+1,-1,-1):
  g2[i]=g2[i+1]*(i+1)%mod
inv=[0]*(N+3)
for i in range(1,N+3):
  inv[i]=g2[i]*g1[i-1]%mod


H,W=map(int,input().split())
ANS=0
x=1
for i in range(H+1):
  ANS=(ANS+(x*cmb(H,i)%mod)*pow(pow(2,H-i,mod)-1,W,mod))%mod
  x=mod-x
print(ANS)
0