結果

問題 No.1141 田グリッド
ユーザー sepa38sepa38
提出日時 2023-03-28 10:54:34
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,411 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 88,748 KB
最終ジャッジ日時 2024-09-20 01:51:54
合計ジャッジ時間 5,607 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,984 KB
testcase_01 AC 36 ms
52,736 KB
testcase_02 AC 35 ms
52,480 KB
testcase_03 AC 36 ms
52,480 KB
testcase_04 AC 36 ms
52,608 KB
testcase_05 AC 35 ms
52,480 KB
testcase_06 AC 41 ms
52,224 KB
testcase_07 AC 37 ms
52,864 KB
testcase_08 AC 67 ms
73,936 KB
testcase_09 AC 60 ms
69,632 KB
testcase_10 AC 65 ms
73,472 KB
testcase_11 AC 83 ms
76,680 KB
testcase_12 AC 75 ms
76,416 KB
testcase_13 AC 330 ms
88,748 KB
testcase_14 AC 352 ms
83,572 KB
testcase_15 TLE -
testcase_16 -- -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

class BIT:
  def __init__(self, n, element):
    self.num = n
    self.ele = element
    self.data = [self.ele] * (self.num + 1)
  
  def calc(self, x, y):
    return x * y % (10 ** 9 + 7)

  def update(self, idx, x):
    while idx <= self.num:
      self.data[idx] = self.calc(self.data[idx], x)
      idx += idx & -idx
  
  def sum(self, idx):
    res = self.ele
    while idx > 0:
      res = self.calc(res, self.data[idx])
      idx -= idx & -idx
    return res
  
  def prod(self, l, r):
    mod = 10 ** 9 + 7
    return self.sum(r) * pow(self.sum(l), mod-2, mod) % mod


h, w = map(int, input().split())
a = [list(map(int, input().split())) for _ in range(h)]
mod = 10 ** 9 + 7
if h < w:
  st = [BIT(w, 1) for _ in range(h)]
  for i in range(h):
    for j in range(w):
      st[i].update(j+1, a[i][j])
  for _ in range(int(input())):
    r, c = map(lambda x: int(x)-1, input().split())
    ans = 1
    for i in range(h):
      if i == r:
        continue
      ans *= st[i].prod(0, c) * st[i].prod(c+1, w) % mod
      ans %= mod
    print(ans)
else:
  st = [BIT(h, 1) for _ in range(w)]
  for i in range(h):
    for j in range(w):
      st[j].update(i+1, a[i][j])
  for _ in range(int(input())):
    r, c = map(lambda x: int(x)-1, input().split())
    ans = 1
    for j in range(w):
      if j == c:
        continue
      ans *= st[j].prod(0, r) * st[j].prod(r+1, h) % mod
      ans %= mod
    print(ans)
0