結果
問題 | No.1846 Good Binary Matrix |
ユーザー | asumo0729 |
提出日時 | 2022-02-18 22:45:59 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,631 bytes |
コンパイル時間 | 215 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 258,304 KB |
最終ジャッジ日時 | 2024-06-29 09:32:23 |
合計ジャッジ時間 | 10,331 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 377 ms
258,176 KB |
testcase_01 | AC | 371 ms
253,056 KB |
testcase_02 | AC | 368 ms
253,440 KB |
testcase_03 | AC | 369 ms
253,012 KB |
testcase_04 | AC | 367 ms
252,928 KB |
testcase_05 | AC | 372 ms
253,312 KB |
testcase_06 | AC | 371 ms
253,232 KB |
testcase_07 | AC | 372 ms
252,856 KB |
testcase_08 | AC | 372 ms
253,076 KB |
testcase_09 | AC | 372 ms
253,312 KB |
testcase_10 | AC | 375 ms
253,312 KB |
testcase_11 | AC | 375 ms
253,312 KB |
testcase_12 | AC | 375 ms
252,928 KB |
testcase_13 | AC | 371 ms
252,980 KB |
testcase_14 | AC | 381 ms
253,440 KB |
testcase_15 | AC | 381 ms
252,800 KB |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
ソースコード
import sys from operator import itemgetter from collections import defaultdict, deque import heapq import bisect import math import itertools import copy stdin=sys.stdin sys.setrecursionlimit(10 ** 8) ip=lambda: int(sp()) fp=lambda: float(sp()) lp=lambda:list(map(int,stdin.readline().split())) sp=lambda:stdin.readline().rstrip() Yp=lambda:print('Yes') Np=lambda:print('No') inf = 1 << 60 inf = float('inf') mod = 10 ** 9 + 7 #mod = 998244353 eps = 1e-9 sortkey1 = itemgetter(0) sortkey2 = lambda x: (x[0], x[1]) class Comb(): def __init__(self, N, mod): self.N = N self.mod = mod self.fa = self.fa_fainv()[0] self.fainv = self.fa_fainv()[1] def fa_fainv(self): fa = [1] for i in range(1, self.N + 1): fa.append(fa[-1] * i % self.mod) fainv = [pow(fa[-1],self.mod - 2,self.mod)] for i in range(1, self.N + 1)[::-1]: fainv.append(fainv[-1] * i % self.mod) fainv = fainv[::-1] return fa, fainv def aCb(self, a, b): if b < 0 or a < b: return 0 return self.fa[a] * self.fainv[a - b] * self.fainv[b] % self.mod def aPb(self, a, b): if b < 0 or a < b: return 0 return self.fa[a] * self.fainv[a - b] ############################################################### H, W = lp() comb = Comb(10 ** 6 + 2, mod) ans = 0 s = -1 for i in range(H + 1): s *= -1 p = pow(2, H - i, mod) p = pow(p, mod - 2, mod) C = comb.aCb(H, i) * pow(2, H * W - W * i, mod) r = pow(1 - p, W, mod) q = s * C * r ans += q ans %= mod print(ans)