結果

問題 No.1846 Good Binary Matrix
ユーザー hir355hir355
提出日時 2022-02-18 23:13:00
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 419 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 86,300 KB
最終ジャッジ日時 2024-06-29 09:49:28
合計ジャッジ時間 24,879 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
66,968 KB
testcase_01 AC 45 ms
66,248 KB
testcase_02 AC 46 ms
65,428 KB
testcase_03 AC 45 ms
65,916 KB
testcase_04 AC 46 ms
67,112 KB
testcase_05 AC 48 ms
66,256 KB
testcase_06 AC 48 ms
66,600 KB
testcase_07 AC 46 ms
67,028 KB
testcase_08 AC 46 ms
65,552 KB
testcase_09 AC 45 ms
65,556 KB
testcase_10 AC 50 ms
65,872 KB
testcase_11 AC 47 ms
67,144 KB
testcase_12 AC 47 ms
67,220 KB
testcase_13 AC 45 ms
67,176 KB
testcase_14 AC 48 ms
66,156 KB
testcase_15 AC 47 ms
66,216 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 45 ms
66,960 KB
testcase_22 AC 43 ms
66,752 KB
testcase_23 AC 1,003 ms
83,464 KB
testcase_24 AC 562 ms
83,720 KB
testcase_25 AC 1,928 ms
83,580 KB
testcase_26 AC 1,251 ms
83,476 KB
testcase_27 TLE -
testcase_28 AC 936 ms
83,652 KB
testcase_29 AC 1,278 ms
83,576 KB
testcase_30 AC 587 ms
83,344 KB
testcase_31 AC 316 ms
86,300 KB
testcase_32 AC 1,675 ms
83,592 KB
testcase_33 AC 336 ms
86,296 KB
testcase_34 AC 66 ms
72,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
fac = [1] * (10 ** 6 + 1)
for i in range(len(fac) - 1):
    fac[i + 1] = fac[i] * (i + 1) % MOD
 
def comb(n, k):
    return fac[n] * pow(fac[n - k], MOD - 2, MOD) * pow(fac[k], MOD - 2, MOD) % MOD

h, w = map(int, input().split())
ans = 0
for i in range(w):
    t = pow(pow(2, w - i, MOD) - 1, h, MOD) * comb(w, i) % MOD
    if i % 2 == 0:
        ans += t
    else:
        ans -= t
print(ans % MOD)
0