結果

問題 No.1846 Good Binary Matrix
ユーザー rlangevinrlangevin
提出日時 2023-02-05 17:30:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,043 ms / 2,000 ms
コード長 565 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 92,884 KB
最終ジャッジ日時 2024-07-04 05:34:37
合計ジャッジ時間 13,085 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
75,512 KB
testcase_01 AC 63 ms
74,636 KB
testcase_02 AC 62 ms
74,384 KB
testcase_03 AC 60 ms
74,952 KB
testcase_04 AC 62 ms
74,156 KB
testcase_05 AC 61 ms
75,300 KB
testcase_06 AC 62 ms
74,824 KB
testcase_07 AC 61 ms
75,880 KB
testcase_08 AC 62 ms
74,400 KB
testcase_09 AC 63 ms
74,520 KB
testcase_10 AC 60 ms
75,196 KB
testcase_11 AC 62 ms
74,952 KB
testcase_12 AC 63 ms
74,408 KB
testcase_13 AC 61 ms
74,464 KB
testcase_14 AC 62 ms
74,692 KB
testcase_15 AC 61 ms
75,012 KB
testcase_16 AC 1,018 ms
91,340 KB
testcase_17 AC 1,021 ms
91,648 KB
testcase_18 AC 979 ms
91,928 KB
testcase_19 AC 1,031 ms
91,400 KB
testcase_20 AC 1,043 ms
91,652 KB
testcase_21 AC 61 ms
74,904 KB
testcase_22 AC 63 ms
74,888 KB
testcase_23 AC 343 ms
91,600 KB
testcase_24 AC 218 ms
91,592 KB
testcase_25 AC 915 ms
91,656 KB
testcase_26 AC 585 ms
91,496 KB
testcase_27 AC 926 ms
91,592 KB
testcase_28 AC 441 ms
91,332 KB
testcase_29 AC 612 ms
91,404 KB
testcase_30 AC 294 ms
91,484 KB
testcase_31 AC 175 ms
92,364 KB
testcase_32 AC 776 ms
91,336 KB
testcase_33 AC 190 ms
92,884 KB
testcase_34 AC 70 ms
78,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
mod = 10 ** 9 + 7
n = 1010101

fact = [1] * (n + 1)
invfact = [1] * (n + 1)
for i in range(1, n):
    fact[i + 1] = ((i+1) * fact[i]) % mod
invfact[n] = pow(fact[n], mod - 2, mod)
for i in range(n - 1, -1, -1):
    invfact[i] = invfact[i + 1] * (i + 1) % mod

def comb(n, r):
    if n < 0 or r < 0 or n - r < 0:
        return 0
    return fact[n] * invfact[r] * invfact[n - r] % mod


ans = 0
pm = 1
for i in range(W, -1, -1):
    ans += pow(pow(2, i, mod) - 1, H, mod) * pm * comb(W, i)
    ans %= mod
    pm *= -1
    
print(ans)
0